Created
May 5, 2016 13:52
-
-
Save abacha/238ed69e2f6c3b437183fedfe18078db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' #remember to close this block with 'EOS' below | |
| main: 'main' is the GitLab 'provider ID' of this LDAP server | |
| label: 'LDAP' | |
| host: '_your_ldap_server' | |
| port: 389 | |
| uid: 'sAMAccountName' | |
| 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' | |
| active_directory: true | |
| allow_username_or_email_login: false | |
| block_auto_created_users: false | |
| base: '' | |
| user_filter: '' | |
| EE only | |
| group_base: '' | |
| admin_group: '' | |
| sync_ssh_keys: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment