summaryrefslogtreecommitdiff
path: root/nginx
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2022-09-24 11:24:41 -0400
committerDaniel Micay <danielmicay@gmail.com>2022-09-24 11:24:41 -0400
commite57765c650cefa741888326ada2744599b1b4722 (patch)
tree4ef67c0a48a724c074867e894285dcec042e480e /nginx
parent329bc8fd62633e7bc18b584319ca744e28d8ce1c (diff)
reduce connection limit to 128
Diffstat (limited to 'nginx')
-rw-r--r--nginx/nginx.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
index 2114e193..9a61bfc0 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;