Commit 552db224 by zhangxingmin

配置

parent f494a54f
# 定义网关服务的负载均衡组 # 定义网关服务的负载均衡组
upstream gateway_load_balance { upstream gateway_load_balance {
server 139.224.150.79:9010; # 管理节点服务器上的网关实例 server 139.224.150.79:9010;
server 139.224.149.150:9011; # 工作节点服务器上的网关实例 server 139.224.149.150:9011;
} }
server { server {
...@@ -11,84 +11,63 @@ server { ...@@ -11,84 +11,63 @@ server {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html; index index.html;
# 静态资源处理 - 必须放在最前面 # 1. 处理 undefined 路径 - 关键修复
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot|map)$ { location ~ ^/undefined {
# ✅ 关键:添加 try_files 指令 # 重写规则 - 去除所有undefined
try_files $uri =404; rewrite ^/undefined(.*)$ $1 permanent;
}
# 确保静态资源有正确的过期时间和缓存头 # 2. 健康检查
expires 1y; location = /health {
add_header Cache-Control "public, immutable"; access_log off;
add_header Content-Type text/plain;
return 200 "healthy\n";
}
# 为静态资源添加CORS头 # 3. 静态资源处理
add_header 'Access-Control-Allow-Origin' '*' always; location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot|map|webp)$ {
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; try_files $uri =404;
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization' always;
# 处理OPTIONS请求(CORS预检) # 禁用缓存以便调试
if ($request_method = 'OPTIONS') { expires -1;
add_header 'Access-Control-Allow-Origin' '*'; add_header Cache-Control "no-cache, must-revalidate";
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization'; # 添加Vary头
add_header 'Access-Control-Max-Age' 1728000; add_header Vary Accept-Encoding;
add_header 'Content-Length' 0;
add_header 'Content-Type' 'text/plain; charset=UTF-8';
return 204;
}
} }
# 代理API请求到网关服务 # 4. API请求处理
location /api/ { location /api/ {
# 负载均衡到两个网关服务实例
proxy_pass http://gateway_load_balance/; proxy_pass http://gateway_load_balance/;
# 代理设置
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
# 超时设置
proxy_connect_timeout 30s; proxy_connect_timeout 30s;
proxy_read_timeout 30s; proxy_read_timeout 30s;
proxy_send_timeout 30s; proxy_send_timeout 30s;
# 缓冲区设置 # CORS配置
proxy_buffering on;
proxy_buffer_size 4k;
proxy_buffers 8 4k;
# CORS 头
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization' always;
# 处理OPTIONS请求(CORS预检)
if ($request_method = 'OPTIONS') { if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS, PATCH';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization'; add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization';
add_header 'Access-Control-Max-Age' 1728000; add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0; add_header 'Content-Length' 0;
add_header 'Content-Type' 'text/plain; charset=UTF-8';
return 204; return 204;
} }
} }
# 健康检查接口 # 5. SPA路由处理
location /health {
access_log off;
return 200 "healthy\n";
add_header Content-Type text/plain;
}
# 前端路由处理 - 放在最后,作为兜底规则
location / { location / {
try_files $uri $uri/ /index.html; # 处理Vue路由history模式 try_files $uri $uri/ /index.html;
# 为页面添加CORS头 # 禁用页面缓存
add_header 'Access-Control-Allow-Origin' '*' always; add_header Cache-Control "no-cache, no-store, must-revalidate" always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; add_header Pragma "no-cache" always;
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization' always; add_header Expires "0" always;
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment