From 5260801290011cec90b554ca571428fa83e2e8ba Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 9 Feb 2023 17:51:01 -0500 Subject: [PATCH] reduce sendfile max chunk to 256k --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index d0a42d9c..4fdca59b 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -17,7 +17,7 @@ http { charset_types text/css text/javascript text/plain text/xml application/atom+xml; sendfile on; - sendfile_max_chunk 512k; + sendfile_max_chunk 256k; tcp_nopush on; keepalive_requests 256; keepalive_timeout 3m;