mirror of
https://github.com/linshenkx/prompt-optimizer.git
synced 2026-05-06 21:50:27 +08:00
- refresh direct dependency baselines across workspace packages - require Node 22 consistently in docs, Docker, and package engines - update lint/build tooling configs to match the new workspace baseline - keep package manifests and lockfile aligned after the dependency refresh
115 lines
3.7 KiB
Nginx Configuration File
115 lines
3.7 KiB
Nginx Configuration File
server {
|
||
listen ${NGINX_PORT};
|
||
server_name _;
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
|
||
# 安全相关头部
|
||
add_header X-Frame-Options "SAMEORIGIN" always;
|
||
add_header X-XSS-Protection "1; mode=block" always;
|
||
add_header X-Content-Type-Options "nosniff" always;
|
||
add_header Referrer-Policy "no-referrer-when-downgrade" always;
|
||
add_header Content-Security-Policy "default-src 'self' https: http: data: blob: 'unsafe-inline'; connect-src 'self' https: http: ws: wss:" always;
|
||
|
||
# 启用gzip压缩
|
||
gzip on;
|
||
gzip_vary on;
|
||
gzip_proxied any;
|
||
gzip_comp_level 6;
|
||
gzip_types text/plain text/css text/xml application/json application/javascript application/xml+rss text/javascript application/x-javascript image/svg+xml;
|
||
gzip_min_length 1000;
|
||
|
||
# 客户端缓存控制
|
||
location /assets {
|
||
expires 7d;
|
||
add_header Cache-Control "public, no-transform";
|
||
try_files $uri $uri/ =404;
|
||
}
|
||
|
||
# MCP服务器代理
|
||
location /mcp {
|
||
# 禁用Basic认证,MCP服务器无需Web访问认证
|
||
auth_basic off;
|
||
|
||
proxy_pass http://localhost:3000;
|
||
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;
|
||
proxy_cache_bypass $http_upgrade;
|
||
proxy_read_timeout 300s;
|
||
proxy_connect_timeout 75s;
|
||
|
||
# CORS headers for MCP
|
||
add_header Access-Control-Allow-Origin * always;
|
||
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always;
|
||
add_header Access-Control-Allow-Headers "Content-Type, Authorization" always;
|
||
|
||
# Handle preflight requests
|
||
if ($request_method = 'OPTIONS') {
|
||
add_header Access-Control-Allow-Origin * always;
|
||
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always;
|
||
add_header Access-Control-Allow-Headers "Content-Type, Authorization" always;
|
||
add_header Access-Control-Max-Age 1728000;
|
||
add_header Content-Type 'text/plain charset=UTF-8';
|
||
add_header Content-Length 0;
|
||
return 204;
|
||
}
|
||
}
|
||
|
||
# Docker环境状态检测(已移除,不再需要代理功能)
|
||
# location = /api/docker-status {
|
||
# add_header Content-Type 'application/json';
|
||
# return 200 '{"status": "available", "environment": "docker"}';
|
||
# }
|
||
|
||
# SPA应用路由支持
|
||
location / {
|
||
# 引入Basic认证配置
|
||
include /etc/nginx/http.d/auth.conf;
|
||
|
||
try_files $uri $uri/ /index.html;
|
||
expires -1;
|
||
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
||
}
|
||
|
||
# 禁止访问隐藏文件
|
||
location ~ /\. {
|
||
deny all;
|
||
access_log off;
|
||
log_not_found off;
|
||
}
|
||
|
||
# 普通页面错误配置
|
||
error_page 404 /index.html;
|
||
error_page 500 502 503 504 /50x.html;
|
||
location = /50x.html {
|
||
root /usr/share/nginx/html;
|
||
}
|
||
|
||
# 性能优化:关闭访问日志,只记录错误
|
||
access_log off;
|
||
error_log /var/log/nginx/error.log error;
|
||
|
||
# 禁止特定请求方法
|
||
if ($request_method !~ ^(GET|HEAD|POST|PUT|DELETE|OPTIONS)$) {
|
||
return 444;
|
||
}
|
||
|
||
# 配置较大文件的传输
|
||
client_max_body_size 50m;
|
||
client_body_buffer_size 128k;
|
||
|
||
# 连接超时设置
|
||
keepalive_timeout 65;
|
||
client_header_timeout 60;
|
||
client_body_timeout 60;
|
||
send_timeout 60;
|
||
proxy_connect_timeout 60;
|
||
proxy_send_timeout 60;
|
||
proxy_read_timeout 60;
|
||
}
|