Added note for escaping LDAP password in template.env (#84)

If the LDAP password contains special characters that need escaping, they must be doubly escaped inside .env.

Added a reminder against the password field for that.
pull/87/head
Shykh Smyr|شيخ سمير 2024-06-26 18:49:49 +05:30 committed by GitHub
parent 5d641c75e4
commit 1fd8070094
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ SYNCSERVERS_1_KEY=
# LDAP_SERVER="ldap://your_domain_controller" # LDAP_SERVER="ldap://your_domain_controller"
# LDAP_STARTTLS=true # LDAP_STARTTLS=true
# LDAP_READER_USER="CN=service_account_name,OU=Users,DC=domain,DC=net" # LDAP_READER_USER="CN=service_account_name,OU=Users,DC=domain,DC=net"
# LDAP_READER_PASSWORD="password" # LDAP_READER_PASSWORD="password" # Doubly escape necessary special characters inside the password. E.g. literal "pass\word" should be escaped as "pass\\\\word"
# LDAP_DN="OU=Users,DC=domain,DC=net" # LDAP_DN="OU=Users,DC=domain,DC=net"
# LDAP_SEARCH_FILTER="" # LDAP_SEARCH_FILTER=""
# LDAP_SEARCH_ATTRIBUTE="uid" # LDAP_SEARCH_ATTRIBUTE="uid"