diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-11-24 06:30:48 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-11-24 06:32:28 -0500 |
| commit | 6bad648347d41bed31f80ae53e722df6927bf2db (patch) | |
| tree | c0a2cc00562d216630cf6daad70dbfa3110ffb2a | |
| parent | 08d95c92faf74e4d8dab45a39340a17e27a27182 (diff) | |
cut receive/send timeouts from 60s to 30s
| -rw-r--r-- | nginx/nginx.conf | 4 |
1 files changed, 4 insertions, 0 deletions
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; |
