From b3883854912ad0dfb327fdf4265a1d2607929dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Michaud?= Date: Wed, 20 Nov 2019 09:01:08 +0100 Subject: [PATCH] Add enclosing parenthesis to users_filter The enclosing parenthesis are mandatory with the Go LDAP driver. In the near future a check will be done at configuration validation before Authelia even starts. --- config.template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.template.yml b/config.template.yml index d5df6e74a..ce43491a6 100644 --- a/config.template.yml +++ b/config.template.yml @@ -66,7 +66,7 @@ authentication_backend: # The users filter used to find the user DN # {0} is a matcher replaced by username. # 'cn={0}' by default. - users_filter: cn={0} + users_filter: (cn={0}) # An additional dn to define the scope of groups additional_groups_dn: ou=groups