From 3d75dee5d5316bf8133198bc3817ba755109dbda Mon Sep 17 00:00:00 2001 From: Marco von Rosenberg Date: Sun, 27 Nov 2022 19:55:48 +0000 Subject: [PATCH] Remove auth path from keycloak url --- .../inventory/host_vars/matrix.cttue.de/vars.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/matrix-docker-ansible/inventory/host_vars/matrix.cttue.de/vars.yml b/matrix-docker-ansible/inventory/host_vars/matrix.cttue.de/vars.yml index 84b3014..9578013 100644 --- a/matrix-docker-ansible/inventory/host_vars/matrix.cttue.de/vars.yml +++ b/matrix-docker-ansible/inventory/host_vars/matrix.cttue.de/vars.yml @@ -71,13 +71,14 @@ matrix_synapse_configuration_extension_yaml: | oidc_providers: - idp_id: cttue idp_name: "Chaostreff Tübingen SSO" - issuer: "https://auth.cttue.de/auth/realms/cttue" + issuer: "https://auth.cttue.de/realms/cttue" client_id: "matrix" client_secret: "EItmul7WaoTW6rzxxnLpGS1G9OqzmSR8" scopes: ["openid", "profile"] - authorization_endpoint: "https://auth.cttue.de/auth/realms/cttue/protocol/openid-connect/auth" - token_endpoint: "https://auth.cttue.de/auth/realms/cttue/protocol/openid-connect/token" - userinfo_endpoint: "https://auth.cttue.de/auth/realms/cttue/protocol/openid-connect/userinfo" + authorization_endpoint: "https://auth.cttue.de/realms/cttue/protocol/openid-connect/auth" + token_endpoint: "https://auth.cttue.de/realms/cttue/protocol/openid-connect/token" + userinfo_endpoint: "https://auth.cttue.de/realms/cttue/protocol/openid-connect/userinfo" + backchannel_logout_enabled: true user_mapping_provider: config: localpart_template: "{% raw %}{{ user.preferred_username }}{% endraw %}"