From ab3c4edea705ea6a61803c6f0916b7f0fd930336 Mon Sep 17 00:00:00 2001 From: Daniel Vinci Date: Sat, 16 Nov 2024 20:56:15 -0700 Subject: [PATCH] Correct issuer URL in OIDC example section Keycloak exposes the issuer information on /realms/whatever, not /auth/realms/whatever. --- docs/configuring-playbook-synapse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuring-playbook-synapse.md b/docs/configuring-playbook-synapse.md index 949620d62..a529d3e34 100644 --- a/docs/configuring-playbook-synapse.md +++ b/docs/configuring-playbook-synapse.md @@ -104,7 +104,7 @@ matrix_synapse_oidc_enabled: true matrix_synapse_oidc_providers: - idp_id: keycloak idp_name: "My KeyCloak server" - issuer: "https://url.ix/auth/realms/{realm_name}" + issuer: "https://url.ix/realms/{realm_name}" client_id: "matrix" client_secret: "{{ vault_synapse_keycloak }}" scopes: ["openid", "profile"]