From d6242179e79b223c77857242b5ff9e55e0b5b6cd Mon Sep 17 00:00:00 2001 From: avdb13 <60188643+avdb13@users.noreply.github.com> Date: Wed, 14 Feb 2024 19:37:50 +0100 Subject: [PATCH] chore: disable rate limiting in the correct homeserver configuration (#26) --- crates/test/fixtures/synapse/homeserver.yaml | 39 +++++++++++++++++++- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/crates/test/fixtures/synapse/homeserver.yaml b/crates/test/fixtures/synapse/homeserver.yaml index 432d21e..17fc85f 100644 --- a/crates/test/fixtures/synapse/homeserver.yaml +++ b/crates/test/fixtures/synapse/homeserver.yaml @@ -34,5 +34,40 @@ signing_key_path: "/data/matrix.localhost.signing.key" trusted_key_servers: - server_name: "matrix.org" - -# vim:ft=yaml \ No newline at end of file +rc_message: + per_second: 1000 + burst_count: 1000 +rc_registration: + per_second: 1000 + burst_count: 1000 +rc_login: + address: + per_second: 1000 + burst_count: 1000 + account: + per_second: 1000 + burst_count: 1000 + failed_attempts: + per_second: 1000 + burst_count: 1000 +rc_admin_redaction: + per_second: 1000 + burst_count: 1000 +rc_joins: + local: + per_second: 1000 + burst_count: 1000 + remote: + per_second: 1000 + burst_count: 1000 +rc_3pid_validation: + per_second: 1000 + burst_count: 1000 +rc_invites: + per_room: + per_second: 1000 + burst_count: 1000 + per_user: + per_second: 1000 + burst_count: 1000 +# vim:ft=yaml