2023-03-02 05:07:54 -05:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name localhost;
|
|
|
|
charset utf-8;
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
2023-03-10 01:33:36 -05:00
|
|
|
location / {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
try_files $uri /index.html;
|
2023-03-02 05:07:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
location /api {
|
|
|
|
proxy_set_header X-Real-IP $remote_addr; #转发用户IP
|
|
|
|
proxy_pass http://app:3002;
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
}
|