From 847e5fe1f24ca022e5e94d5197ba565c5bc2b318 Mon Sep 17 00:00:00 2001 From: "J. Fernando Lagrange" Date: Sun, 19 Aug 2018 15:21:47 +0200 Subject: [PATCH] Allow 10minutes for server to respond This get rid of most "Gateway timeout" errors. Fix #18 --- conf/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index d3ae0b8..e9bb709 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,6 +3,11 @@ location __PATH__/ { proxy_pass http://127.0.0.1:__PORT__; proxy_set_header Host $host; proxy_redirect off; + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc;