From 88370182f0d70f0ac9b5ae3b1be5902095eb225e Mon Sep 17 00:00:00 2001 From: bronku Date: Tue, 25 Nov 2025 11:59:20 +0100 Subject: [PATCH] removed bursts --- nginx/nginx.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 9d0cca5..2dd1cab 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,12 +1,8 @@ events { } http { - # Connection limiting - limit_conn_zone $binary_remote_addr zone=addr:10m; - limit_conn addr 10; # Max 10 concurrent connections per IP - # Rate limiting (optional) limit_req_zone $binary_remote_addr zone=req_limit:10m rate=20r/s; - limit_req zone=req_limit burst=30 nodelay; + limit_req zone=req_limit ; upstream dotnet_app { server dotnet-1;