nex_docus/frontend/nginx.conf

55 lines
1.6 KiB
Nginx Configuration File
Raw Normal View History

2025-12-23 05:02:10 +00:00
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# 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;
# 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
}
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;
}
}