Spaces:
Paused
Paused
| server { | |
| listen 80; | |
| location / { | |
| proxy_pass http://127.0.0.1:7680; | |
| 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 | |
| } | |
| } | |