From 6bad648347d41bed31f80ae53e722df6927bf2db Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 24 Nov 2020 06:30:48 -0500 Subject: [PATCH] cut receive/send timeouts from 60s to 30s --- nginx/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 4b18e963..4a92e868 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -19,7 +19,11 @@ http { keepalive_timeout 65; types_hash_max_size 2048; server_tokens off; + client_max_body_size 4k; + client_body_timeout 30s; + client_header_timeout 30s; + send_timeout 30s; ssl_protocols TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on;