117 lines
4.2 KiB
Plaintext
117 lines
4.2 KiB
Plaintext
server
|
||
{
|
||
listen 80;
|
||
listen 443 ssl http2 ;
|
||
server_name view.airtep.com;
|
||
index index.php index.html index.htm default.php default.htm default.html;
|
||
root /www/wwwroot/view.airtep.com/dist/;
|
||
#CERT-APPLY-CHECK--START
|
||
# 用于SSL证书申请时的文件验证相关配置 -- 请勿删除
|
||
include /www/server/panel/vhost/nginx/well-known/view.airtep.com.conf;
|
||
#CERT-APPLY-CHECK--END
|
||
include /www/server/panel/vhost/nginx/extension/view.airtep.com/*.conf;
|
||
|
||
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
|
||
#error_page 404/404.html;
|
||
ssl_certificate /www/server/panel/vhost/cert/view.airtep.com/fullchain.pem;
|
||
ssl_certificate_key /www/server/panel/vhost/cert/view.airtep.com/privkey.pem;
|
||
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
|
||
ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
|
||
ssl_prefer_server_ciphers on;
|
||
ssl_session_tickets on;
|
||
ssl_session_cache shared:SSL:10m;
|
||
ssl_session_timeout 10m;
|
||
add_header Strict-Transport-Security "max-age=31536000";
|
||
error_page 497 https://$host$request_uri;
|
||
|
||
#SSL-END
|
||
|
||
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
|
||
error_page 404 /404.html;
|
||
#error_page 502 /502.html;
|
||
#ERROR-PAGE-END
|
||
|
||
#PHP-INFO-START PHP引用配置,可以注释或修改
|
||
include enable-php-00.conf;
|
||
#PHP-INFO-END
|
||
|
||
#REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
|
||
include /www/server/panel/vhost/rewrite/view.airtep.com.conf;
|
||
#REWRITE-END
|
||
|
||
# 禁止访问的敏感文件
|
||
location ~* (\.user.ini|\.htaccess|\.htpasswd|\.env.*|\.project|\.bashrc|\.bash_profile|\.bash_logout|\.DS_Store|\.gitignore|\.gitattributes|LICENSE|README\.md|CLAUDE\.md|CHANGELOG\.md|CHANGELOG|CONTRIBUTING\.md|TODO\.md|FAQ\.md|composer\.json|composer\.lock|package(-lock)?\.json|yarn\.lock|pnpm-lock\.yaml|\.\w+~|\.swp|\.swo|\.bak(up)?|\.old|\.tmp|\.temp|\.log|\.sql(\.gz)?|docker-compose\.yml|docker\.env|Dockerfile|\.csproj|\.sln|Cargo\.toml|Cargo\.lock|go\.mod|go\.sum|phpunit\.xml|phpunit\.xml|pom\.xml|build\.gradl|pyproject\.toml|requirements\.txt|application(-\w+)?\.(ya?ml|properties))$
|
||
{
|
||
return 404;
|
||
}
|
||
|
||
# 禁止访问的敏感目录
|
||
location ~* /(\.git|\.svn|\.bzr|\.vscode|\.claude|\.idea|\.ssh|\.github|\.npm|\.yarn|\.pnpm|\.cache|\.husky|\.turbo|\.next|\.nuxt|node_modules|runtime)/ {
|
||
return 404;
|
||
}
|
||
|
||
#一键申请SSL证书验证目录相关设置
|
||
location ~ \.well-known{
|
||
allow all;
|
||
}
|
||
location / {
|
||
try_files $uri $uri/ /index.html;
|
||
}
|
||
|
||
# 将 /api 转发到本机 Node 后端(端口与 start-api.sh 一致)
|
||
location /api {
|
||
proxy_pass http://127.0.0.1:5599/;
|
||
proxy_http_version 1.1;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto $scheme;
|
||
}
|
||
|
||
|
||
#禁止在证书验证目录放入敏感文件
|
||
if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
|
||
return 403;
|
||
}
|
||
|
||
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
|
||
{
|
||
expires 30d;
|
||
error_log /dev/null;
|
||
access_log /dev/null;
|
||
}
|
||
|
||
location ~ .*\.(js|css)?$
|
||
{
|
||
expires 12h;
|
||
error_log /dev/null;
|
||
access_log /dev/null;
|
||
}
|
||
|
||
|
||
# location /api/ {
|
||
# proxy_pass http://localhost:3003/api/;
|
||
# }
|
||
# 前端 SPA:/edit、/db 等路由都返回 index.html
|
||
location = /edit {
|
||
try_files /index.html =404;
|
||
}
|
||
|
||
location /ws {
|
||
|
||
proxy_pass http://127.0.0.1:3003;
|
||
|
||
proxy_http_version 1.1;
|
||
proxy_set_header Upgrade $http_upgrade;
|
||
proxy_set_header Connection $connection_upgrade;
|
||
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
||
proxy_read_timeout 86400;
|
||
}
|
||
|
||
access_log /www/wwwlogs/view.airtep.com.log;
|
||
error_log /www/wwwlogs/view.airtep.com.error.log;
|
||
} |