1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00

Increase ngnix rate limit on the auth header (PROJQUAY-9149) (#4133)

Increase rate limit on the auth header

Signed-off-by: harishsurf <hgovinda@redhat.com>
This commit is contained in:
Harish Govindarajulu
2025-07-21 09:42:05 -04:00
committed by GitHub
parent 883bd7ab37
commit 88abc8b2a4

View File

@@ -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 %}