LDAP Not Working

Hi @pablo i resolve the issue.

In the config.yaml

userbase:
       - "OU=xx,OU=xx,DC=xx,DC=xx,DC=xx,DC=com"
       - "CN=xx,DC=xx,DC=xx,DC=xx,DC=com"

Userbase and rolebase not accept value like an array.
The correct method is :

      users:
          primary-userbase:
             base: 'ou=people,dc=example,dc=com'
             search: '(uid={0})'
          secondary-userbase:
             base: 'cn=users,dc=example,dc=com'
             search: '(uid={0})'