From 492f4609ca75dd54a4ad7a1d045acc282fe44d48 Mon Sep 17 00:00:00 2001 From: john Date: Fri, 19 Jun 2026 16:11:01 +0100 Subject: [PATCH] Update lldap/authelia --- lldap/authelia | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/lldap/authelia b/lldap/authelia index 38903cb..d004096 100644 --- a/lldap/authelia +++ b/lldap/authelia @@ -1,7 +1,32 @@ authentication_backend: + # How often authelia should check if there is a user update in LDAP + refresh_interval: '1m' ldap: implementation: 'lldap' + # Format is [://][:] + # ldap port for LLDAP is 3890 and ldaps 6360 address: 'ldap://lldap:3890' - base_dn: 'DC=johnsnexus,DC=click' + # Set base dn that you configured in LLDAP + base_dn: 'DC=example,DC=com' + # The username and password of the bind user. + # "bind_user" should be the username you created for authentication with the "lldap_strict_readonly" permission. It is not recommended to use an actual admin account here. + # If you are configuring Authelia to change user passwords, then the account used here needs the "lldap_password_manager" permission instead. + user: 'UID=bind_user,OU=people,DC=example,DC=com' + # Password can also be set using a secret: https://www.authelia.com/configuration/methods/secrets/. + password: 'REPLACE_ME' + # Optional: Setup TLS if you've enabled LDAPS + # tls: + # skip_verify: false + # minimum_version: TLS1.2 + + # Disable the authelia password change and reset functionality if the "bind_user" does not have the "lldap_password_manager" permission. + password_reset: + disable: false + password_change: + disable: false + + + + user: 'UID=heimdall,OU=people,DC=johnsnexus,DC=click' password: 'ragnarok' \ No newline at end of file