explicitly set long harakiri time to deal with very large inventory deletes

This commit is contained in:
Wayne Witzel III
2016-12-12 00:58:06 -05:00
parent fafec3a0e3
commit c6e1598b9c
3 changed files with 8 additions and 10 deletions

View File

@@ -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;
}