Skip to content

Commit

Permalink
Raise join/invite rate limits for bursty usage patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKvalheim committed Nov 4, 2024
1 parent 514f9a1 commit 46b73b5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions inventory/group_vars/matrix_servers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ matrix_server_fqn_matrix: "{{ now(fmt='%Y') }}-ephemeral.host.seagl.org"
matrix_synapse_enable_registration: true
matrix_synapse_registration_requires_token: true

# Raise rate limits for bursty usage patterns
matrix_synapse_rc_invites:
per_room: {per_second: 1, burst_count: 100}
per_user: {per_second: 1, burst_count: 100}
per_issuer: {per_second: 1, burst_count: 100}
matrix_synapse_rc_joins:
local: {per_second: 1, burst_count: 100}
remote: {per_second: 1, burst_count: 100}

matrix_client_element_enabled: false
devture_playbook_state_preserver_vars_preservation_enabled: false

Expand Down

0 comments on commit 46b73b5

Please sign in to comment.