nex_docus/frontend/nginx.conf

114 lines
3.5 KiB
Nginx Configuration File
Raw Normal View History

2025-12-23 05:02:10 +00:00
server {
listen 80;
server_name localhost;
2025-12-31 07:12:56 +00:00
2025-12-23 05:02:10 +00:00
root /usr/share/nginx/html;
index index.html;
2025-12-31 07:12:56 +00:00
# 增加上传文件大小限制(支持大文件上传)
client_max_body_size 100M;
2025-12-23 05:02:10 +00:00
# Gzip 压缩
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_types text/plain text/css text/xml text/javascript application/javascript application/json application/xml+rss;
2025-12-23 10:12:15 +00:00
# API 反向代理(代理到后端服务)
2025-12-23 11:10:38 +00:00
# 必须在静态资源规则之前,确保 API 请求优先匹配
2025-12-23 10:12:15 +00:00
location /api/ {
2025-12-23 10:17:26 +00:00
proxy_pass http://backend:8000/api/;
2025-12-23 10:12:15 +00:00
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_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
2025-12-31 07:12:56 +00:00
# 增加上传文件大小限制
client_max_body_size 100M;
2025-12-23 10:12:15 +00:00
# WebSocket 支持
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
2025-12-23 11:10:38 +00:00
# 禁用缓存API 请求不应该被缓存)
proxy_buffering off;
add_header Cache-Control "no-cache, no-store, must-revalidate";
2025-12-23 10:12:15 +00:00
}
2026-03-11 12:39:05 +00:00
# MCP Streamable HTTP 反向代理
2026-04-02 13:33:05 +00:00
# 不对 /mcp 做 301/302 重定向,避免部分 MCP client 在跳转后丢失 POST body 或请求方法
2026-03-11 12:39:05 +00:00
location = /mcp {
2026-04-02 13:33:05 +00:00
proxy_pass http://backend:8000/mcp/;
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_http_version 1.1;
proxy_set_header Connection "";
proxy_buffering off;
proxy_request_buffering off;
proxy_connect_timeout 60s;
proxy_send_timeout 3600s;
proxy_read_timeout 3600s;
add_header Cache-Control "no-cache, no-store, must-revalidate";
2026-03-11 12:39:05 +00:00
}
location /mcp/ {
proxy_pass http://backend:8000/mcp/;
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_http_version 1.1;
proxy_set_header Connection "";
# MCP 可能返回流式响应,不能被 nginx 缓冲
proxy_buffering off;
proxy_request_buffering off;
# MCP 会话可能比普通 API 更长
proxy_connect_timeout 60s;
proxy_send_timeout 3600s;
proxy_read_timeout 3600s;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
2025-12-31 07:12:56 +00:00
# PDF.js worker 文件 - 必须返回正确的 MIME type
location /pdf-worker/ {
types {
application/javascript mjs;
}
add_header Content-Type "application/javascript" always;
add_header Cache-Control "public, max-age=31536000, immutable";
}
2025-12-23 05:02:10 +00:00
# 前端路由支持
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
2025-12-23 11:10:38 +00:00
# 前端静态资源缓存(仅针对前端打包后的静态文件)
location ~* ^/assets/.*\.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
2025-12-23 05:02:10 +00:00
expires 1y;
add_header Cache-Control "public, immutable";
}
# 禁止访问隐藏文件
location ~ /\. {
deny all;
}
}