summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Goforth <egoforth@gmail.com>2018-07-06 23:46:06 +0000
committerEd Goforth <egoforth@gmail.com>2018-07-06 23:46:06 +0000
commitbcf0e4a85ae24662affa88cb32bbd490bc322980 (patch)
tree0120a165246132bce0c2eca1be58eaf89b26f507
parent06e3ea7ac3deefad9b91030994b40c7c8abe06d3 (diff)
downloadgitlab-ce-bcf0e4a85ae24662affa88cb32bbd490bc322980.tar.gz
Update ldap.md
If you escape the '\' character when using a "domain\user" scheme for the bind_dn name, it will fail. gitlab-ctl reconfigure escapes characters, and if you pre-escape the '\', the resultant yaml file will have four (4) '\' characters.
-rw-r--r--doc/administration/auth/ldap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/administration/auth/ldap.md b/doc/administration/auth/ldap.md
index 3c98d683924..1fbb1fc7447 100644
--- a/doc/administration/auth/ldap.md
+++ b/doc/administration/auth/ldap.md
@@ -111,7 +111,7 @@ main:
uid: 'sAMAccountName' # This should be the attribute, not the value that maps to uid.
##
- ## Examples: 'america\\momo' or 'CN=Gitlab Git,CN=Users,DC=mydomain,DC=com'
+ ## Examples: 'america\momo' or 'CN=Gitlab Git,CN=Users,DC=mydomain,DC=com'
##
bind_dn: '_the_full_dn_of_the_user_you_will_bind_with'
password: '_the_password_of_the_bind_user'