Correct issuer URL in OIDC example section

Keycloak exposes the issuer information on /realms/whatever, not /auth/realms/whatever.
This commit is contained in:
Daniel Vinci 2024-11-16 20:56:15 -07:00 committed by GitHub
parent 09c42477bb
commit ab3c4edea7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"]