Spaces:
Running
Running
| events { | |
| worker_connections 1024; | |
| } | |
| pid /tmp/nginx.pid; | |
| http { | |
| access_log /dev/stdout; | |
| error_log /dev/stderr; | |
| server { | |
| listen __PORT__; | |
| listen [::]:__PORT__; | |
| server_name _; | |
| include /tmp/nginx.auth.conf; | |
| location / { | |
| proxy_pass http://127.0.0.1:3000; | |
| proxy_http_version 1.1; | |
| 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; | |
| proxy_set_header Upgrade $http_upgrade; | |
| proxy_set_header Connection "upgrade"; | |
| proxy_read_timeout 600s; | |
| proxy_send_timeout 600s; | |
| } | |
| } | |
| } | |