eab91174db
Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
626 B
Nginx Configuration File
23 lines
626 B
Nginx Configuration File
# 孕妇端 nginx:SPA 客户端路由回退 + /api 反向代理到后端
|
||
server {
|
||
listen 80;
|
||
server_name _;
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
|
||
# 后端 API 反代(容器内服务名 backend)
|
||
location /api/ {
|
||
proxy_pass http://backend:3000;
|
||
proxy_http_version 1.1;
|
||
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;
|
||
}
|
||
|
||
# SPA 路由回退
|
||
location / {
|
||
try_files $uri $uri/ /index.html;
|
||
}
|
||
}
|