website/integrations/chat-communication-collaboration/matrix-synapse/index.md
Matrix is an open source project that publishes the Matrix open standard for secure, decentralized, real-time communication, and its Apache licensed reference implementations.
The following placeholders are used in this guide:
matrix.company is the FQDN of the Matrix installation.authentik.company is the FQDN of the authentik installation.:::info This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application. :::
To support the integration of Matrix Synapse with authentik, you need to create an application/provider pair in authentik.
Strict redirect URI to https://matrix.company/_synapse/client/oidc/callback.Add the following block to your Matrix config
:::info For more info, see https://matrix-org.github.io/synapse/latest/openid.html?highlight=authentik#authentik :::
oidc_providers:
- idp_id: authentik
idp_name: authentik
discover: true
issuer: "https://authentik.company/application/o/<application_slug>/"
client_id: "*client_ID*"
client_secret: "*client_secret*"
scopes:
- "openid"
- "profile"
- "email"
user_mapping_provider:
config:
localpart_template: "{{ user.preferred_username }}"
display_name_template: "{{ user.name|capitalize }}"
[...]
jwt_config:
enabled: true
secret: "*client_secret*"
algorithm: "RS256"