blob: f159a2c0116e0e43f478480a98f0273f9f14e9f7 [file] [log] [blame]
223011114511d212025-06-05 18:36:11 +08001server {
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}