feat: add new variable authelia_auth_backend_disable_reset_password
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-05-31 16:30:18 +02:00
parent e557266291
commit 46e1d627f0
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,8 @@ authelia_totp_issuer: "{{ authelia_portal_url | urlsplit('hostname') }}"
authelia_totp_period: 30
authelia_totp_skew: 1
authelia_auth_backend_disable_reset_password: False
# @var authelia_auth_backend:description: >
# Set authentication backend. Available options are `local|ldap`. All `authelia_auth_ldap_` variables will only work
# while the LDAP auth backend is enabled.

View File

@ -25,7 +25,7 @@ totp:
skew: {{ authelia_totp_skew }}
authentication_backend:
disable_reset_password: false
disable_reset_password: {{ authelia_auth_backend_disable_reset_password | bool | lower }}
refresh_interval: 5m
{% if authelia_auth_backend == "ldap" %}