diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2023-02-09 17:51:01 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2023-02-09 17:51:01 -0500 |
| commit | 5260801290011cec90b554ca571428fa83e2e8ba (patch) | |
| tree | 168b38ad9c6bbb929efc77e447be37d907de6491 /nginx/nginx.conf | |
| parent | d1dce982d0e26e04ffa32dded6a3440419ffe2fb (diff) | |
reduce sendfile max chunk to 256k
Diffstat (limited to 'nginx/nginx.conf')
| -rw-r--r-- | nginx/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
