1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00

proxy set timeout

This commit is contained in:
Xavier ROOT 2015-11-13 13:39:39 +01:00
parent 4a835de860
commit e637598f8c

View file

@ -28,6 +28,11 @@ location ~ ^PATHTOCHANGE/ws/ {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_redirect off;
# To avoid disconnecting after 60sec :
proxy_read_timeout 14400s;
proxy_send_timeout 14400s;
# (14400s is 4h)
}
}