Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
dex
Commits
1b7b3515
Commit
1b7b3515
authored
Jan 26, 2019
by
Takashi Okamoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Active Directory instruction.
parent
fbdb55ab
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
ldap.md
Documentation/connectors/ldap.md
+39
-0
No files found.
Documentation/connectors/ldap.md
View file @
1b7b3515
...
@@ -284,3 +284,42 @@ connectors:
...
@@ -284,3 +284,42 @@ connectors:
If the search finds an entry, it will attempt to use the provided password to bind as that user entry.
If the search finds an entry, it will attempt to use the provided password to bind as that user entry.
[
openldap
]:
https://www.openldap.org/
[
openldap
]:
https://www.openldap.org/
## Example: Searching a Active Directory server with groups
The following configuration will allow the LDAP connector to search a Active Directory using an LDAP filter.
```
yaml
connectors
:
-
type
:
ldap
name
:
ActiveDirectory
id
:
ad
config
:
host
:
ad.example.com:636
insecureNoSSL
:
false
insecureSkipVerify
:
true
bindDN
:
cn=Administrator,cn=users,dc=example,dc=com
bindPW
:
admin0!
usernamePrompt
:
Email Address
userSearch
:
baseDN
:
cn=Users,dc=example,dc=com
filter
:
"
(objectClass=person)"
username
:
userPrincipalName
idAttr
:
DN
emailAttr
:
userPrincipalName
nameAttr
:
cn
groupSearch
:
baseDN
:
cn=Users,dc=example,dc=com
filter
:
"
(objectClass=group)"
userAttr
:
DN
groupAttr
:
member
nameAttr
:
cn
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment