From 58b028ad5f9da85c9797b2c33ce94d12b4a08c8f Mon Sep 17 00:00:00 2001 From: Bryan Alves Date: Sun, 1 Jun 2025 03:11:21 -0400 Subject: [PATCH] example_configs: fix Authelia OU for helm installations Authelia when installed via helm by default looks for users in the `Users` OU. It supports changing this configuration via the `additional_users_dn` property. Set this to match what lldap expects. --- example_configs/authelia_config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/example_configs/authelia_config.yml b/example_configs/authelia_config.yml index 1ee4785..ae19268 100644 --- a/example_configs/authelia_config.yml +++ b/example_configs/authelia_config.yml @@ -22,13 +22,14 @@ authentication_backend: # "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 + additional_users_dn: ou=people # Password can also be set using a secret: https://www.authelia.com/configuration/methods/secrets/ - password: 'REPLACE_ME' - + password: "REPLACE_ME" + # Optional: Setup TLS if you've enabled LDAPS # tls: # skip_verify: false # minimum_version: TLS1.2 - + # Optional: To allow sign in with BOTH username and email, you can change the users_filter to this # users_filter: "(&(|({username_attribute}={input})({mail_attribute}={input}))(objectClass=person))"