diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2023-02-09 18:42:06 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2023-02-09 18:42:15 -0500 |
| commit | 3b4c47b51bf3c3d25c4d445e34949310ec939871 (patch) | |
| tree | 2e7006249f4c591a2ca5c76ffbbce5050d1be3d8 /nginx | |
| parent | 7a823438d069bd7e51d4d8825bbcd8212c102cbf (diff) | |
reduce client body / header timeouts to 15s
Diffstat (limited to 'nginx')
| -rw-r--r-- | nginx/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 4fdca59b..3fd9d4e8 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -30,8 +30,8 @@ http { large_client_header_buffers 2 1k; http2_chunk_size 4k; - client_body_timeout 30s; - client_header_timeout 30s; + client_body_timeout 15s; + client_header_timeout 15s; send_timeout 30s; resolver [::1]; |
