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 | 998fc1779b089e7fc29e2958eb8f3ffc7b02344b (patch) | |
tree | ed278d6e73a470cd58140ce606062a298ec0e73f /install | |
parent | b63ac30fa188f2c8da37fe85e122d5a1e801d7a2 (diff) | |
download | Ishtar-998fc1779b089e7fc29e2958eb8f3ffc7b02344b.tar.bz2 Ishtar-998fc1779b089e7fc29e2958eb8f3ffc7b02344b.zip |
Install: default nginx conf wait after long uwsgi response (refs #3174)
Diffstat (limited to 'install')
-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; } } |