mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
Reduce throttling
With the default configuration, we are throttled extremely often. This eventually causes timeouts.
This commit is contained in:
parent
7f07caca3f
commit
d9c30f586a
@ -10,6 +10,39 @@ down:
|
|||||||
finally:
|
finally:
|
||||||
- docker stop mjolnir-test-reverse-proxy || true
|
- docker stop mjolnir-test-reverse-proxy || true
|
||||||
homeserver:
|
homeserver:
|
||||||
|
# Basic configuration.
|
||||||
server_name: localhost:9999
|
server_name: localhost:9999
|
||||||
public_baseurl: http://localhost:9999
|
public_baseurl: http://localhost:9999
|
||||||
registration_shared_secret: REGISTRATION_SHARED_SECRET
|
registration_shared_secret: REGISTRATION_SHARED_SECRET
|
||||||
|
|
||||||
|
# Getting rid of throttling.
|
||||||
|
rc_message:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
|
||||||
|
rc_registration:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
|
||||||
|
rc_login:
|
||||||
|
address:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
account:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
failed_attempts:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
|
||||||
|
rc_admin_redaction:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
|
||||||
|
rc_joins:
|
||||||
|
local:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
remote:
|
||||||
|
per_second: 10000
|
||||||
|
burst_count: 10000
|
||||||
|
Loading…
Reference in New Issue
Block a user