File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
docs/deploy-and-configure/configuration/production-ready-settings Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,16 @@ DEPLOY_POST_LOGOUT_REDIRECT_URI=${DEPLOY_BASE_URL}
3636### Build (DataIntegration) valid post redirect settings
3737
3838For in Build backend (DataIntegration) you set this in ` dataintegration.conf ` .
39+ The following parameter are relevant that for.
40+ The first (``` endSessionUrl ``` ) is the keycloak logout url, like ``` KEYCLOAK_URL/auth/realms/cmem/protocol/openid-connect/logout ```
41+ Number two (``` logoutRedirectUrl ``` ) sets the URL where the redirect should happen to, after a successful logout.
42+ And the last (``` idToken ``` ) is required now and always default to ``` true ``` .
43+ This is part of the OIDC flow.
44+
3945``` conf
40- TODO: post-logout-redirect-uri: "${DEPLOY_BASE_URL}"
46+ oauth.endSessionUrl = ${OAUTH_LOGOUT_URL}
47+ oauth.logoutRedirectUrl = ${OAUTH_LOGOUT_REDIRECT_URL}
48+ oauth.idToken = true
4149```
4250
4351
You can’t perform that action at this time.
0 commit comments