BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
0b78bd7a
Commit
0b78bd7a
authored
Oct 20, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep the legacy LDAP syntax in the documentation
parent
1768e3ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
ldap.md
doc/integration/ldap.md
+12
-3
No files found.
doc/integration/ldap.md
View file @
0b78bd7a
...
...
@@ -24,22 +24,31 @@ If you want to limit all GitLab access to a subset of the LDAP users on your LDA
The filter must comply with
[
RFC 4515
](
http://tools.ietf.org/search/rfc4515
)
.
```
ruby
# For omnibus-gitlab
gitlab_rails
[
'ldap_user_filter'
]
=
'(employeeType=developer)'
# For omnibus packages; new LDAP server syntax
gitlab_rails
[
'ldap_servers'
]
=
YAML
.
load
<<-
EOS
main:
# snip...
user_filter: '(employeeType=developer)'
EOS
# omnibus package; legacy syntax
gitlab_rails
[
'ldap_user_filter'
]
=
'(employeeType=developer)'
```
```
yaml
# For installations from source
# For installations from source
; new LDAP server syntax
production
:
ldap
:
servers
:
main
:
# snip...
user_filter
:
'
(employeeType=developer)'
# installations from source; legacy syntax
production
:
ldap
:
# snip...
user_filter
:
'
(employeeType=developer)'
```
Tip: if you want to limit access to the nested members of an Active Directory group you can use the following syntax:
...
...
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