diff options
Diffstat (limited to 'conf/auth.d/ldap_bind_dn.conf.example')
-rw-r--r-- | conf/auth.d/ldap_bind_dn.conf.example | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/conf/auth.d/ldap_bind_dn.conf.example b/conf/auth.d/ldap_bind_dn.conf.example new file mode 100644 index 00000000..d2400f07 --- /dev/null +++ b/conf/auth.d/ldap_bind_dn.conf.example @@ -0,0 +1,29 @@ +# This is an example of LDAP (BindDN) authentication +# +id = 101 +type = ldap_bind_dn +name = LDAP BindDN +is_activated = true + +[config] +host = mydomain.com +port = 636 +# 0 - Unencrypted, 1 - LDAPS, 2 - StartTLS +security_protocol = 0 +skip_verify = false +bind_dn = +bind_password = +user_base = ou=Users,dc=mydomain,dc=com +attribute_username = +attribute_name = +attribute_surname = +attribute_mail = mail +attributes_in_bind = false +filter = (&(objectClass=posixAccount)(cn=%s)) +admin_filter = +group_enabled = false +group_dn = +group_filter = +group_member_uid = +user_uid = + |