Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJob van der Voort <job@gitlab.com>2015-01-28 21:24:30 +0300
committerJob van der Voort <job@gitlab.com>2015-01-28 21:24:30 +0300
commit5914c7e1b7aed690430a4340b3ed47d5dbe88425 (patch)
treea231d8be835a43a930fde6fb7cd8a089a8488202 /config
parent8eb365c0a04b912d2e10eb16adeeb4216563be2c (diff)
parent087c4cbc3cba2cce1c25773af304833d217976fc (diff)
Merge branch 'ldap_defaults' into 'master'
Saner LDAP defaults I have the impression that most people use LDAP servers listening on port 389, without encryption. If we make that the default we give people a smoother ride setting up GitLab. See merge request !1446
Diffstat (limited to 'config')
-rw-r--r--config/gitlab.yml.example4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example
index e5780cabb63..59af49c0180 100644
--- a/config/gitlab.yml.example
+++ b/config/gitlab.yml.example
@@ -153,9 +153,9 @@ production: &base
label: 'LDAP'
host: '_your_ldap_server'
- port: 636
+ port: 389
uid: 'sAMAccountName'
- method: 'ssl' # "tls" or "ssl" or "plain"
+ method: 'plain' # "tls" or "ssl" or "plain"
bind_dn: '_the_full_dn_of_the_user_you_will_bind_with'
password: '_the_password_of_the_bind_user'