mirror of https://github.com/nitnelave/lldap.git
15 lines
729 B
Plaintext
15 lines
729 B
Plaintext
## ADD after values in the existing .env file.
|
|
## This example uses the unsecured 3890 port. For ldaps, set LDAP_METHOD=simple_tls and LDAP_PORT=6360
|
|
## For more details, see https://github.com/joylarkin/mastodon-documentation/blob/master/Running-Mastodon/Enabling-LDAP-login.md
|
|
LDAP_ENABLED=true
|
|
LDAP_METHOD=plain
|
|
LDAP_HOST=lldap
|
|
LDAP_PORT=3890
|
|
LDAP_BASE=dc=domain,dc=com
|
|
LDAP_BIND_DN=uid=admin,ou=people,dc=domain,dc=com
|
|
LDAP_PASSWORD=<lldap_admin_password_here>
|
|
LDAP_UID=uid
|
|
LDAP_MAIL=mail
|
|
LDAP_UID_CONVERSION_ENABLED=true
|
|
# match username or mail to authenticate, and onlow allow users belonging to group 'mastodon'
|
|
LDAP_SEARCH_FILTER=(&(memberof=cn=mastodon,ou=groups,dc=domain,dc=com)(|(%{uid}=%{email})(%{mail}=%{email}))) |