From 88abc8b2a4fae533595eb9ddee7d75e70d9e018b Mon Sep 17 00:00:00 2001 From: Harish Govindarajulu Date: Mon, 21 Jul 2025 09:42:05 -0400 Subject: [PATCH] Increase ngnix rate limit on the auth header (PROJQUAY-9149) (#4133) Increase rate limit on the auth header Signed-off-by: harishsurf --- conf/nginx/rate-limiting.conf.jnj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx/rate-limiting.conf.jnj b/conf/nginx/rate-limiting.conf.jnj index b9ab11834..1ba20c232 100644 --- a/conf/nginx/rate-limiting.conf.jnj +++ b/conf/nginx/rate-limiting.conf.jnj @@ -44,7 +44,7 @@ map $namespace $namespaced_http2_bucket { } {% if enable_rate_limits %} -limit_req_zone $http_authorization zone=staticauth:10m rate=30r/s; +limit_req_zone $http_authorization zone=staticauth:10m rate=60r/s; {% else %} limit_req_zone $request_id zone=staticauth:10m rate=300r/s; {% endif %}