From 9cdf30c08c3ca3f349906ce198d694576262e9a8 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 24 Sep 2022 11:27:15 -0400 Subject: [PATCH] reduce connection limit to 128 --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index efa54f6..295f800 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -39,7 +39,7 @@ http { http2_max_concurrent_streams 16; limit_conn_status 429; limit_conn_zone $binary_remote_addr zone=addr:10m; - limit_conn addr 256; + limit_conn addr 128; ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256;