From 493dbb1b1a27e5e7a33758c2b1d7aac2621c5fac Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 27 Jan 2022 05:56:38 +0000 Subject: [PATCH] Increase nginx send_timeout and keepalive_requests Fixes #425 --- nginx.conf | 4 ++-- production/nginx/http-basic.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nginx.conf b/nginx.conf index 166da5348..e9bd6034c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -32,10 +32,10 @@ http { # timeout which a single keep-alive client connection will stay open keepalive_timeout 69s; # maximum time between packets nginx is allowed to pause when sending the client data - send_timeout 10s; + send_timeout 69s; # number of requests per connection, does not affect SPDY - keepalive_requests 100; + keepalive_requests 1337; # enable gzip compression gzip on; diff --git a/production/nginx/http-basic.conf b/production/nginx/http-basic.conf index ce257591a..a79c73382 100644 --- a/production/nginx/http-basic.conf +++ b/production/nginx/http-basic.conf @@ -20,10 +20,10 @@ client_header_timeout 10s; # timeout which a single keep-alive client connection will stay open keepalive_timeout 69s; # maximum time between packets nginx is allowed to pause when sending the client data -send_timeout 10s; +send_timeout 69s; # number of requests per connection, does not affect SPDY -keepalive_requests 100; +keepalive_requests 1337; # enable gzip compression gzip on;