Skip to content
Snippets Groups Projects
Commit 0d913c3e authored by brinn's avatar brinn
Browse files

add: LDAP configuration

SVN: 17295
parent bb218d95
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,9 @@ authorization-component-factory = active-authorization ...@@ -10,6 +10,9 @@ authorization-component-factory = active-authorization
script-folder = . script-folder = .
#
# Database configuration
#
# Supported: currently only 'postgresql' and 'h2' are supported # Supported: currently only 'postgresql' and 'h2' are supported
database.engine = postgresql database.engine = postgresql
database.create-from-scratch = false database.create-from-scratch = false
...@@ -22,11 +25,42 @@ database.owner-password = ...@@ -22,11 +25,42 @@ database.owner-password =
database.admin-user = database.admin-user =
database.admin-password = database.admin-password =
#
# Crowd configuration
#
crowd.service.host = crowd-bsse.ethz.ch crowd.service.host = crowd-bsse.ethz.ch
crowd.service.port = 8443 crowd.service.port = 8443
crowd.application.name = openbis crowd.application.name = openbis
crowd.application.password = crowd.application.password =
#
# LDAP configuration
#
# The URL of the LDAP server, e.g. "ldap://d.ethz.ch/DC=d,DC=ethz,DC=ch"
ldap.server.url = <LDAP URL>
# The distinguished name of the security principal,
# e.g. "CN=carl,OU=EthUsers,DC=d,DC=ethz,DC=ch"
ldap.security.principal.distinguished.name = <distinguished name to login to the LDAP server>
# Password of the LDAP user account that will be used to login to the LDAP server to perform the queries
ldap.security.principal.password = <password of the user to connect to the LDAP server>
# The security protocol to use, use "ssl" or "none", default is "ssl"
ldap.security.protocol =
# The authentication method to use: "none" (no authentication), "simple", "strong" (SASL), defaults to "simple"
ldap.security.authentication-method =
# The referral mode:
# "follow" - follow referrals automatically (the default)
# "ignore" - ignore referrals
# "throw" - throw ReferralException when a referral is encountered
ldap.referral =
# The attribute name for the user id, defaults to "uid"
ldap.attributenames.user.id =
# The attribute name for the email, defaults to "mail"
ldap.attributenames.email =
# The attribute name for the first name, defaults to "givenName"
ldap.attributenames.first.name =
# The attribute name for the last name, defaults to "sn"
ldap.attributenames.last.name =
# The database instance local unique identifier. Used when the new database is created. # The database instance local unique identifier. Used when the new database is created.
database-instance = TEST database-instance = TEST
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment