diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-30 17:11:08 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-30 17:12:28 +0200 |
commit | 3356b55ec519a10393f1bbc07420807bde84fb79 (patch) | |
tree | ed278d6e73a470cd58140ce606062a298ec0e73f /install/nginx.conf.template | |
parent | b6b51a330f2e1a3b83da4df77946897edf7b7f9f (diff) | |
download | Ishtar-3356b55ec519a10393f1bbc07420807bde84fb79.tar.bz2 Ishtar-3356b55ec519a10393f1bbc07420807bde84fb79.zip |
Install: default nginx conf wait after long uwsgi response (refs #3174)
Diffstat (limited to 'install/nginx.conf.template')
-rw-r--r-- | install/nginx.conf.template | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/nginx.conf.template b/install/nginx.conf.template index c41018786..dd236d113 100644 --- a/install/nginx.conf.template +++ b/install/nginx.conf.template @@ -29,6 +29,8 @@ server { location / { include uwsgi_params; uwsgi_pass 127.0.0.1:#UWSGI_PORT#; + uwsgi_read_timeout 1800; + uwsgi_send_timeout 600; } } |