diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2022-09-24 11:19:18 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2022-09-24 11:19:18 -0400 |
| commit | 329bc8fd62633e7bc18b584319ca744e28d8ce1c (patch) | |
| tree | 6e90711e29893dc0780ca312527b6b7ceedf89a5 | |
| parent | 2ef894ca47d7ef284d007f4f89a755360171a296 (diff) | |
reduce HTTP/2 concurrent streams to 16
| -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 57ce6bf1..2114e193 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -36,7 +36,7 @@ http { resolver [::1]; resolver_timeout 5s; - http2_max_concurrent_streams 32; + http2_max_concurrent_streams 16; limit_conn_status 429; limit_conn_zone $binary_remote_addr zone=addr:10m; limit_conn addr 256; |
