21 lines
578 B
Nginx Configuration File
21 lines
578 B
Nginx Configuration File
|
|
server {
|
||
|
|
listen 18800;
|
||
|
|
server_name localhost;
|
||
|
|
|
||
|
|
# 前端静态文件
|
||
|
|
location / {
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
index index.html;
|
||
|
|
try_files $uri $uri/ /index.html; # Vue Router 历史模式支持
|
||
|
|
}
|
||
|
|
|
||
|
|
# API 反向代理到真实后端
|
||
|
|
location /api/ {
|
||
|
|
proxy_pass http://140.143.206.120/prod-api/;
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|