22301111 | 4511d21 | 2025-06-05 18:36:11 +0800 | [diff] [blame^] | 1 | server { |
2 | listen 80; | ||||
3 | server_name localhost team11.10813352.xyz; | ||||
4 | |||||
5 | # 前端请求(React 静态资源) | ||||
6 | location / { | ||||
7 | root /usr/share/nginx/html; # React 构建文件默认位置 | ||||
8 | index index.html; | ||||
9 | try_files $uri $uri/ /index.html; # 支持前端路由 | ||||
10 | } | ||||
11 | |||||
12 | # 后端 API 请求 | ||||
13 | location /echo { | ||||
14 | proxy_pass http://backend:5011; # 转发到后端容器 | ||||
15 | proxy_set_header Host $host; | ||||
16 | proxy_set_header X-Real-IP $remote_addr; | ||||
17 | } | ||||
18 | } |