authelia: allow password change

This commit is contained in:
ibizaman 2025-08-22 23:09:53 +02:00 committed by Pierre Penninckx
parent ebd39bbe73
commit 7ff2cfa642

View file

@ -392,9 +392,9 @@ in
# Inspired from https://github.com/lldap/lldap/blob/7d1f5abc137821c500de99c94f7579761fc949d8/example_configs/authelia_config.yml # Inspired from https://github.com/lldap/lldap/blob/7d1f5abc137821c500de99c94f7579761fc949d8/example_configs/authelia_config.yml
authentication_backend = { authentication_backend = {
refresh_interval = "5m"; refresh_interval = "5m";
password_reset = { # We allow password reset and change because the ldap user we use allows it.
disable = "false"; password_reset.disable = "false";
}; password_change.disable = "false";
ldap = { ldap = {
implementation = "lldap"; implementation = "lldap";
address = "ldap://${cfg.ldapHostname}:${toString cfg.ldapPort}"; address = "ldap://${cfg.ldapHostname}:${toString cfg.ldapPort}";