mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
26 lines
831 B
YAML
26 lines
831 B
YAML
# lldap configuration:
|
|
# LLDAP_LDAP_BASE_DN: dc=example,dc=com
|
|
|
|
# ##############################
|
|
# rest of the Dex options
|
|
# ##############################
|
|
|
|
connectors:
|
|
- type: ldap
|
|
id: ldap
|
|
name: LDAP
|
|
config:
|
|
host: lldap-host # make sure it does not start with `ldap://`
|
|
port: 3890 # or 6360 if you have ldaps enabled
|
|
insecureNoSSL: true # or false if you have ldaps enabled
|
|
insecureSkipVerify: true # or false if you have ldaps enabled
|
|
bindDN: uid=admin,ou=people,dc=example,dc=com # replace admin with your admin user
|
|
bindPW: very-secure-password # replace with your admin password
|
|
userSearch:
|
|
baseDN: ou=people,dc=example,dc=com
|
|
username: uid
|
|
idAttr: uid
|
|
emailAttr: mail
|
|
nameAttr: displayName
|
|
preferredUsernameAttr: uid
|