| server { |
| listen 7860; |
| server_name _; |
|
|
| client_max_body_size 50M; |
|
|
| location = /health { |
| proxy_pass ${BACKEND_ORIGIN}/health; |
| 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; |
| } |
|
|
| location /api/ { |
| proxy_pass ${BACKEND_ORIGIN}/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; |
| } |
|
|
| location = /backend/health { |
| proxy_pass ${BACKEND_ORIGIN}/health; |
| 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; |
| } |
|
|
| location /backend/ { |
| rewrite ^/backend/(.*)$ /api/$1 break; |
| proxy_pass ${BACKEND_ORIGIN}; |
| 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; |
| } |
|
|
| location / { |
| proxy_pass http://127.0.0.1:3000; |
| proxy_http_version 1.1; |
| proxy_set_header Upgrade $http_upgrade; |
| proxy_set_header Connection "upgrade"; |
| proxy_set_header Host $host; |
| proxy_cache_bypass $http_upgrade; |
| } |
| } |