2026-02-28 19:32:45 +08:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
|
|
|
|
# Vue Router history 模式支持
|
|
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# 反向代理后端 API
|
|
|
|
|
location /api/ {
|
2026-03-03 15:41:28 +08:00
|
|
|
proxy_pass http://backend:8080;
|
2026-02-28 19:32:45 +08:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /uploads/ {
|
2026-03-03 15:41:28 +08:00
|
|
|
proxy_pass http://backend:8080;
|
2026-02-28 19:32:45 +08:00
|
|
|
}
|
|
|
|
|
}
|