You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
In the LDAP Configuration page, the LDAP_USER_FILTER=(&(uid=${user})) parameter is mentioned. I would appreciate a note, that if one embeds this into a docker-compose.yml file, it has to be written like this
LDAP_USER_FILTER=(&(uid=$${user})) in order to escape the ${user} variable.
Thanks for the suggestion @col-panic and sorry for my late reply. I've now added a note to that option, in 8238edc, just in the comment as part of the option list.
In the LDAP Configuration page, the
LDAP_USER_FILTER=(&(uid=${user}))
parameter is mentioned. I would appreciate a note, that if one embeds this into adocker-compose.yml
file, it has to be written like thisLDAP_USER_FILTER=(&(uid=$${user}))
in order to escape the${user}
variable.This is documented in https://stackoverflow.com/a/40619627/905817
The text was updated successfully, but these errors were encountered: