1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

increase nginx timeout. Enable live snapshot.

This commit is contained in:
catborise 2020-11-06 14:30:41 +03:00
parent 9aed7c7716
commit 4b7554ea14
4 changed files with 16 additions and 28 deletions

View file

@ -16,9 +16,9 @@ server {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-Proto $remote_addr;
proxy_set_header X-Forwarded-Ssl off;
proxy_connect_timeout 600;
proxy_read_timeout 600;
proxy_send_timeout 600;
proxy_connect_timeout 1800;
proxy_read_timeout 1800;
proxy_send_timeout 1800;
client_max_body_size 1024M;
}