From 329bc8fd62633e7bc18b584319ca744e28d8ce1c Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 24 Sep 2022 11:19:18 -0400 Subject: [PATCH] reduce HTTP/2 concurrent streams to 16 --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;