Last active
December 11, 2015 17:28
-
-
Save mbreese/4634262 to your computer and use it in GitHub Desktop.
gitorious ldap config for connecting to Active Directory
This file contains 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
production: | |
disable_default: true | |
methods: | |
- adapter: Gitorious::Authentication::LDAPAuthentication | |
server: 10.1.?.? | |
port: 389 | |
base_dn: DC=domain,DC=org | |
# bind_username: binduser | |
# bind_password: binduserpass | |
user_filter: | |
encryption: none | |
login_attribute: sAMAccountName | |
distinguished_name_template: "{}@domain.org" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You don't need the bind user/pass because it will use the user's login credentials to bind to the Active Directory.