Created
August 9, 2017 06:03
-
-
Save hydra1983/b895e54fd99931d814a45652e7586a87 to your computer and use it in GitHub Desktop.
Sonar OpenLDAP Configuration
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
#-------------------------------------------------------------------------------------------------- | |
# Security | |
sonar.security.realm=LDAP | |
#-------------------------------------------------------------------------------------------------- | |
# LDAP | |
# General Configuration | |
ldap.url=ldap://myopenldap:389 | |
ldap.bindDn=cn=admin,dc=myopenldap,dc=com | |
ldap.bindPassword=admin | |
# User Configuration | |
ldap.user.baseDn=dc=myopenldap,dc=com | |
ldap.user.request=(&(objectClass=inetOrgPerson)(cn={login})) | |
ldap.user.realNameAttribute=sn | |
ldap.user.emailAttribute=mail | |
## NOTE: The configuration below is not tested yet | |
# Group Configuration | |
#ldap.group.baseDn=dc=myopenldap,dc=com | |
#ldap.group.request=(&(objectClass=groupOfUniqueNames)(uniqueMember={dn})) | |
#ldap.grou.idAttribute=cn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment