mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
rate limiting: Increase default rate limits.
It's too easy to go over the rate limits when using the webapp. The correct fix for this probably involves some changes to which routes get covered by what sort of rate limit, but for now, just increase the limits.
This commit is contained in:
@@ -612,7 +612,7 @@ CACHES = {
|
||||
########################################################################
|
||||
|
||||
RATE_LIMITING_RULES = [
|
||||
(60, 100), # 100 requests max every minute
|
||||
(60, 200), # 200 requests max every minute
|
||||
]
|
||||
DEBUG_RATE_LIMITING = DEBUG
|
||||
REDIS_PASSWORD = get_secret('redis_password')
|
||||
|
||||
Reference in New Issue
Block a user