2025-12-03 05:34:26 +08:00
|
|
|
|
user root;
|
2025-12-03 03:08:53 +08:00
|
|
|
|
worker_processes auto;
|
|
|
|
|
|
error_log /var/log/nginx/error.log warn;
|
2025-12-03 05:25:14 +08:00
|
|
|
|
pid /var/run/nginx.pid;
|
2025-12-03 03:08:53 +08:00
|
|
|
|
|
|
|
|
|
|
events {
|
|
|
|
|
|
worker_connections 1024;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
|
|
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
|
|
|
|
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
|
|
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
|
|
tcp_nopush on;
|
|
|
|
|
|
tcp_nodelay on;
|
|
|
|
|
|
keepalive_timeout 65;
|
|
|
|
|
|
types_hash_max_size 2048;
|
|
|
|
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
|
|
gzip_vary on;
|
|
|
|
|
|
gzip_proxied any;
|
|
|
|
|
|
gzip_comp_level 6;
|
|
|
|
|
|
gzip_types text/plain text/css text/xml text/javascript application/json application/javascript application/xml+rss application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml;
|
|
|
|
|
|
|
|
|
|
|
|
# 上游后端服务
|
|
|
|
|
|
upstream backend {
|
|
|
|
|
|
server localhost:8000;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
server {
|
|
|
|
|
|
listen 80;
|
|
|
|
|
|
server_name _;
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
|
index index.html;
|
|
|
|
|
|
|
|
|
|
|
|
# API 代理
|
|
|
|
|
|
location /api {
|
|
|
|
|
|
proxy_pass http://backend;
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
# WebSocket 支持
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-21 03:34:16 +08:00
|
|
|
|
# 【新增】更新服务 API(直接代理到 Python)
|
|
|
|
|
|
location /api/update/ {
|
|
|
|
|
|
# 代理到更新服务(端口 9090)
|
|
|
|
|
|
proxy_pass http://localhost:9090/;
|
|
|
|
|
|
|
|
|
|
|
|
# 传递请求头
|
|
|
|
|
|
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 Authorization $http_authorization;
|
|
|
|
|
|
|
|
|
|
|
|
# 超时设置(更新操作可能需要较长时间)
|
|
|
|
|
|
proxy_read_timeout 300s;
|
|
|
|
|
|
proxy_connect_timeout 10s;
|
|
|
|
|
|
proxy_send_timeout 300s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-03 03:08:53 +08:00
|
|
|
|
# WebSocket 代理
|
|
|
|
|
|
location /ws {
|
|
|
|
|
|
proxy_pass http://backend;
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
|
proxy_set_header 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_set_header X-Forwarded-Proto $scheme;
|
|
|
|
|
|
|
|
|
|
|
|
# WebSocket 超时设置
|
|
|
|
|
|
proxy_read_timeout 86400;
|
|
|
|
|
|
proxy_send_timeout 86400;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# 前端静态文件
|
|
|
|
|
|
location / {
|
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
|
|
|
|
|
|
|
# 静态资源缓存
|
|
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
|
|
|
|
|
|
expires 1y;
|
|
|
|
|
|
add_header Cache-Control "public, immutable";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# 健康检查
|
|
|
|
|
|
location /health {
|
|
|
|
|
|
access_log off;
|
|
|
|
|
|
return 200 "healthy\n";
|
|
|
|
|
|
add_header Content-Type text/plain;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|