Longer timeouts

This commit is contained in:
Enrico Ros
2024-05-02 00:43:10 -07:00
parent a0a1a5e3c1
commit ccf7036f33
+5
View File
@@ -80,6 +80,11 @@ Then, edit the nginx configuration file `/etc/nginx/sites-enabled/default` and a
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
# Longer timeouts
proxy_read_timeout 3600;
proxy_connect_timeout 3600;
proxy_send_timeout 3600;
}
```