Spaces:
Runtime error
Runtime error
| server { | |
| listen 7680; | |
| location / { | |
| proxy_pass http://127.0.0.1:5000; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_read_timeout 1800; # Set timeout to 1800 seconds, which is 30 minutes | |
| } | |
| } |