mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 13:46:02 -04:00
Add ratelimiting on joins
This commit is contained in:
parent
320ef98852
commit
18de00adb4
4 changed files with 72 additions and 2 deletions
|
@ -154,6 +154,10 @@ def default_config(name, parse=False):
|
|||
"account": {"per_second": 10000, "burst_count": 10000},
|
||||
"failed_attempts": {"per_second": 10000, "burst_count": 10000},
|
||||
},
|
||||
"rc_joins": {
|
||||
"local": {"per_second": 10000, "burst_count": 10000},
|
||||
"remote": {"per_second": 10000, "burst_count": 10000},
|
||||
},
|
||||
"saml2_enabled": False,
|
||||
"public_baseurl": None,
|
||||
"default_identity_server": None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue