implement selective rate limiting

This commit is contained in:
Jason Ertel
2023-05-08 12:18:46 -04:00
parent c6c3cc82e4
commit bd23d1ab7b
8 changed files with 34 additions and 15 deletions

View File

@@ -20,3 +20,11 @@ nginx:
advanced: True
global: True
helpLink: nginx.html
throttle_login_burst:
description: Number of login requests that can burst without triggering request throttling. Higher values allow more repeated login attempts. Values greater than zero are required in order to provide a usable login flow.
global: True
helpLink: nginx.html
throttle_login_rate:
description: Number of login requests per minute that can be processed without triggering a rate limit. Higher values allow more repeated login attempts. Requests are counted by unique client IP and averaged over time.
global: True
helpLink: nginx.html