diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-02-22 14:37:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 14:37:18 -0500 |
commit | 4ed08ff72ef8f1abf85ab22de1e51b570f67b27e (patch) | |
tree | cf00cd5638590b1faac36f90aeb72ee2b6a80ae4 /docs/usage | |
parent | Use `json.dump` in `FileExfiltrationWriter` (#15095) (diff) | |
download | synapse-4ed08ff72ef8f1abf85ab22de1e51b570f67b27e.tar.xz |
Tighten the default rate limit of creating new devices. (#15135)
Diffstat (limited to 'docs/usage')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 58c6955689..ab1f9f4963 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -1518,11 +1518,11 @@ rc_registration_token_validity: This option specifies several limits for login: * `address` ratelimits login requests based on the client's IP - address. Defaults to `per_second: 0.17`, `burst_count: 3`. + address. Defaults to `per_second: 0.003`, `burst_count: 5`. * `account` ratelimits login requests based on the account the - client is attempting to log into. Defaults to `per_second: 0.17`, - `burst_count: 3`. + client is attempting to log into. Defaults to `per_second: 0.03`, + `burst_count: 5`. * `failed_attempts` ratelimits login requests based on the account the client is attempting to log into, based on the amount of failed login |