mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-07 16:01:37 +01:00
fix(element): Raise treshold for login rate limit to avoid too early barrier hitting normal users
This commit is contained in:
committed by
Thorsten Rossner
parent
00fafb6a1b
commit
466e741494
11
README.md
11
README.md
@@ -9,14 +9,15 @@ openDesk is a Kubernetes based, open-source and cloud-native digital workplace s
|
|||||||
Aufbau ZenDiS" of Germany's Federal Ministry of the Interior.
|
Aufbau ZenDiS" of Germany's Federal Ministry of the Interior.
|
||||||
|
|
||||||
It features:
|
It features:
|
||||||
- Fully integrated Identity Management (Univention, Keycloak)
|
- Fully integrated Identity Management (Univention)
|
||||||
- File storage (Nextcloud)
|
- File storage (Nextcloud)
|
||||||
- Weboffice (Collabora)
|
- Weboffice (Collabora)
|
||||||
- Videoconference (Jitsi)
|
- Videoconference (Nordeck w/ Jitsi)
|
||||||
- Encrypted Chat (Synapse, Element)
|
- Chat and Collaboration (Element w/ Nordeck)
|
||||||
- Groupware (OX Appsuite)
|
- Groupware (OX Appsuite)
|
||||||
- Wiki (XWiki)
|
- Wiki (XWiki)
|
||||||
- Notes and Diagrams (Cryptpad, Draw.io)
|
- Project Management (OpenProject)
|
||||||
|
- Notes and Diagrams (Cryptpad)
|
||||||
|
|
||||||
openDesk integrates these components and is working towards a seamless user experience.
|
openDesk integrates these components and is working towards a seamless user experience.
|
||||||
|
|
||||||
@@ -40,7 +41,7 @@ Basic knowledge of Kubernetes and Devops is required though.
|
|||||||
|
|
||||||
# Active development notice
|
# Active development notice
|
||||||
openDesk will face breaking changes in the near future without upgrade paths before
|
openDesk will face breaking changes in the near future without upgrade paths before
|
||||||
[technical release](https://gitlab.opencode.de/bmi/opendesk/deployment/sovereign-workplace/-/releases
|
[technical release](https://gitlab.opencode.de/bmi/opendesk/deployment/sovereign-workplace/-/releases)
|
||||||
v1.0.0 is reached.
|
v1.0.0 is reached.
|
||||||
|
|
||||||
While most components support upgrades, major configuration or component changes may occur, therefore we recommend
|
While most components support upgrades, major configuration or component changes may occur, therefore we recommend
|
||||||
|
|||||||
@@ -11,6 +11,16 @@ configuration:
|
|||||||
- "m.space.parent"
|
- "m.space.parent"
|
||||||
- "net.nordeck.meetings.metadata"
|
- "net.nordeck.meetings.metadata"
|
||||||
- "m.room.power_levels"
|
- "m.room.power_levels"
|
||||||
|
# When a user logs into Element a parallel request is done through Intercom Service to allow Synapse API
|
||||||
|
# interaction, to avoid (temporary) blocking of the user for followup logins we want to raise the limits.
|
||||||
|
# https://matrix-org.github.io/synapse/v1.59/usage/configuration/config_documentation.html#ratelimiting
|
||||||
|
rc_login:
|
||||||
|
account:
|
||||||
|
per_second: 2
|
||||||
|
burst_count: 8
|
||||||
|
address:
|
||||||
|
per_second: 2
|
||||||
|
burst_count: 12
|
||||||
|
|
||||||
homeserver:
|
homeserver:
|
||||||
guestModule:
|
guestModule:
|
||||||
|
|||||||
Reference in New Issue
Block a user