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:
Tim Abbott
2018-02-09 11:54:26 -08:00
parent ea0fe90367
commit afda05adc4

View File

@@ -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')