| server { | |
| listen ${PORT:-7860}; | |
| server_name _; | |
| location / { | |
| root /app/frontend/dist; | |
| index index.html index.htm; | |
| try_files $uri /index.html; | |
| } | |
| location /api/ { | |
| proxy_pass http://127.0.0.1:5001/; | |
| 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; | |
| } | |
| } |