Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions ldap/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Configuration
The base string to use. Required.

ldap.provider.url
The provider url, including the base. Required.
The provider url. Required.

ldap.provider.userdn
The userdn to use to authenticate to the provider. Optional.
Expand All @@ -24,7 +24,9 @@ Configuration
The password to use to authenticate to the provider. Optional.

ldap.user.dn.pattern
The dn pattern for the user. Required.
The dn pattern for the user. Required. Can provide multiple separated by `;`

| `Default: uid={0}`

ldap.user.attributes.username
The attribute to use for the username. Optional.
Expand All @@ -36,11 +38,33 @@ Configuration

| `Default: mail`

ldap.user.attributes.firstname
The attribute to use for the first name. Optional.

| `Default: givenname`

ldap.user.attributes.lastname
The attribute to use for the last name. Optional.

| `Default: sn`

ldap.group.role.attribute
The attribute to use for the group role. Optional.

| `Default: cn`

ldap.group.search.base
The base for group search. Optional.

ldap.group.search.filter
The search filter for group search. Optional.

| `Default: (uniqueMember={0})`

ldap.user.search.base
Base for user search. Optional.

ldap.user.search.filter
Filter for user search. Optional

| `Default: (uid={0})`