From de966892afa43144f2bf90209747457f7a9f3629 Mon Sep 17 00:00:00 2001 From: Peter Thomassen Date: Tue, 18 Jun 2024 17:25:19 +0200 Subject: [PATCH] feat(api): reset rate limits to previous value Related: 5bcda060fb0280c41dc7dfad1779fab66c5611ea --- api/api/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api/settings.py b/api/api/settings.py index fcffbb619..ecabc1917 100644 --- a/api/api/settings.py +++ b/api/api/settings.py @@ -124,7 +124,7 @@ "300/d", ], # DNS API requests affecting RRset(s) of a single domain # UserRateThrottle - "user": "10000/d", # hard limit on requests by a) an authenticated user, b) an unauthenticated IP address + "user": "2000/d", # hard limit on requests by a) an authenticated user, b) an unauthenticated IP address }, "NUM_PROXIES": 0, # Do not use X-Forwarded-For header when determining IP for throttling }