implemented password redirect url for mailu

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-06 16:01:12 +01:00
parent 280ef536da
commit 4192c153a2
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ defaults_oidc:
toke_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/token"
user_info_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/userinfo"
logout_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/logout"
change_credentials: "{{_oidc_client_issuer_url}}account/account-security/signing-in"
#############################################
### OAuth2-Proxy ###

View File

@ -174,5 +174,5 @@ OIDC_VERIFY_SSL=True
# Enable redirect to OIDC provider for password change. Possible values: True, False
OIDC_CHANGE_PASSWORD_REDIRECT_ENABLED=True
# Redirect URL for password change. Defaults to provider issuer url appended by /.well-known/change-password
#OIDC_CHANGE_PASSWORD_REDIRECT_URL=https://oidc.example.com/pw-change
OIDC_CHANGE_PASSWORD_REDIRECT_URL={{oidc.client.change_credentials}}
{% endif %}