Would anyone share their working .env config for the LDAP portion of the docker .env file?
I’m beating my head on a wall here.
Thank you much.
Servername=your ldap server name
subdomain = your company’s subdoamin
domain = your company’s domain
# Enable authentication.
ENABLE_AUTH=1
# Enable guest access.
#ENABLE_GUESTS=1
# Select authentication type: internal, jwt or ldap
AUTH_TYPE=ldap
# LDAP url for connection.
LDAP_URL=ldaps://servername.subdomain.domain.com/
# LDAP base DN. Can be empty
LDAP_BASE= DC=subdomain,DC=domain,DC=com
# LDAP user DN. Do not specify this parameter for the anonymous bind.
LDAP_BINDDN= CN=JitsiAuth Service Account,OU=Service Accounts,OU=Special Accounts,OU=NAmerica,DC=subdomain,DC=domain,DC=com
# LDAP user password. Do not specify this parameter for the anonymous bind.
LDAP_BINDPW=JitsiPasswordthatMatchesLDAPAccount
# LDAP filter. Tokens example:
# %1-9 - if the input key is user@mail.domain.com, then %1 is com, %2 is domain and %3 is mail.
# %s - %s is replaced by the complete service string.
# %r - %r is replaced by the complete realm string.
#LDAP_FILTER=(idnumber=%u)
LDAP_FILTER=(SamAccountName=%u)
# LDAP authentication method
LDAP_AUTH_METHOD=bind
# LDAP version
#LDAP_VERSION=3
# LDAP TLS using
LDAP_USE_TLS=1
1 Like
Thank you.