fix(element): Increase message and media rate limits

This commit is contained in:
Milton Moura
2025-10-06 15:12:07 +00:00
committed by Thorsten Roßner
parent 484dfafe64
commit 13968a8133

View File

@@ -25,6 +25,14 @@ configuration:
address: address:
per_second: 2 per_second: 2
burst_count: 12 burst_count: 12
# Set higher limits for messages and media due to non-chat Matrix apps and widgets (such as NeoBoard)
# https://github.com/nordeck/matrix-neoboard/blob/main/docs/configuration.md#rate-limiting-settings
rc_message:
per_second: 5
burst_count: 25
rc_media_create:
per_second: 20
burst_count: 100
database: database:
host: {{ .Values.databases.synapse.host | quote }} host: {{ .Values.databases.synapse.host | quote }}