From 87d825626c24d2677422b88b81c13f15f44879bf Mon Sep 17 00:00:00 2001 From: lordratner <49489398+lordratner@users.noreply.github.com> Date: Thu, 14 Mar 2024 14:42:03 -0500 Subject: [PATCH] example_configs: fix role in authelia --- 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 9286e62..d7fa1c7 100644 --- a/example_configs/authelia_config.yml +++ b/example_configs/authelia_config.yml @@ -41,8 +41,9 @@ authentication_backend: mail_attribute: mail # The attribute holding the display name of the user. This will be used to greet an authenticated user. display_name_attribute: displayName - # The username and password of the admin user. - # "admin" should be the admin username you set in the LLDAP configuration - user: uid=admin,ou=people,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/docs/configuration/secrets.html password: 'REPLACE_ME'