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

@@ -17,7 +17,7 @@ server {
# If you have a domain name, this is where to add it
server_name _;
keepalive_timeout 60;
keepalive_timeout 65;
ssl_certificate /etc/nginx/nginx.crt;
ssl_certificate_key /etc/nginx/nginx.key;
@@ -64,9 +64,8 @@ server {
}
location / {
uwsgi_read_timeout 30s;
uwsgi_send_timeout 30s;
uwsgi_pass uwsgi;
uwsgi_read_timeout 120s;
uwsgi_pass uwsgi;
include /etc/nginx/uwsgi_params;
}
}