From b2e1530b33a794f80d983ccc8264970848d5f6a9 Mon Sep 17 00:00:00 2001 From: Danny Grove Date: Mon, 8 Apr 2024 08:26:46 -0700 Subject: [PATCH] k/matrix/synapse: increase rate limits to allow for slack bridging --- .../matrix/synapse/files/homeserver.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/kustomizations/matrix/synapse/files/homeserver.yaml b/kustomizations/matrix/synapse/files/homeserver.yaml index 0225234..4803ee0 100644 --- a/kustomizations/matrix/synapse/files/homeserver.yaml +++ b/kustomizations/matrix/synapse/files/homeserver.yaml @@ -49,6 +49,20 @@ listeners: - name: [metrics] compress: true +# Rate Limit +rc_invites: + per_room: + burst_count: 200 + per_user: + burst_count: 200 +rc_joins: + local: + burst_count: 200 + remote: + burst_count: 200 +rc_joins_per_user: + burst_count: 200 + # Registration registration: enabled: false