| 123456789101112131415161718 |
- server {
- listen 80;
- root /usr/share/nginx/html;
- index index.html;
- # Proxy API calls to backend
- location /api/ {
- proxy_pass http://backend:3001/api/;
- proxy_http_version 1.1;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- }
- # SPA fallback
- location / {
- try_files $uri $uri/ /index.html;
- }
- }
|