| server { |
| listen 80; |
| server_name team12.10813352.xyz; # 替换为你的域名 |
| |
| <<<<<<< HEAD |
| location /api { |
| proxy_pass http://localhost:12138/; |
| ======= |
| location /api/ { |
| proxy_pass http://localhost:12138; |
| >>>>>>> 0321331 (修改nginx.conf,修改映射路径) |
| 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_http_version 1.1; |
| proxy_set_header Connection ""; |
| |
| # 超时设置 |
| proxy_connect_timeout 60s; |
| proxy_send_timeout 60s; |
| proxy_read_timeout 60s; |
| } |
| } |