summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
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;
}