summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorWayne Witzel III <wayne@riotousliving.com>2016-12-12 06:58:06 +0100
committerWayne Witzel III <wayne@riotousliving.com>2016-12-12 18:44:05 +0100
commitc6e1598b9cf6c376106dbb1b32eef1e05862ad4d (patch)
tree3330c11992a4c7ca3989be6a8e2c61ecd690def2 /config
parentUpdate to use Modern values for SSL (diff)
downloadawx-c6e1598b9cf6c376106dbb1b32eef1e05862ad4d.tar.xz
awx-c6e1598b9cf6c376106dbb1b32eef1e05862ad4d.zip
explicitly set long harakiri time to deal with very large inventory deletes
Diffstat (limited to 'config')
-rw-r--r--config/awx-nginx.conf9
1 files changed, 4 insertions, 5 deletions
diff --git a/config/awx-nginx.conf b/config/awx-nginx.conf
index eefb763834..30806cbfe8 100644
--- a/config/awx-nginx.conf
+++ b/config/awx-nginx.conf
@@ -23,8 +23,8 @@ http {
}
sendfile on;
- #tcp_nopush on;
- #gzip on;
+ tcp_nopush on;
+ tcp_nodelay on;
upstream uwsgi {
server 127.0.0.1:8050;
@@ -45,7 +45,7 @@ http {
# If you have a domain name, this is where to add it
server_name _;
- keepalive_timeout 60;
+ keepalive_timeout 65;
ssl_certificate /etc/tower/tower.cert;
ssl_certificate_key /etc/tower/tower.key;
@@ -87,8 +87,7 @@ http {
}
location / {
- uwsgi_read_timeout 30s;
- uwsgi_send_timeout 30s;
+ uwsgi_read_timeout 120s;
uwsgi_pass uwsgi;
include /etc/nginx/uwsgi_params;
}