Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b95ac096
Commit
b95ac096
authored
Apr 06, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added documentation
parent
3a36fa89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
0 deletions
+73
-0
config/gitlab.yml.example
config/gitlab.yml.example
+1
-0
doc/integration/saml.md
doc/integration/saml.md
+72
-0
No files found.
config/gitlab.yml.example
View file @
b95ac096
...
@@ -354,6 +354,7 @@ production: &base
...
@@ -354,6 +354,7 @@ production: &base
# issuer: 'https://gitlab.example.com',
# issuer: 'https://gitlab.example.com',
# name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient'
# name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient'
# } }
# } }
#
# - { name: 'crowd',
# - { name: 'crowd',
# args: {
# args: {
# crowd_server_url: 'CROWD SERVER URL',
# crowd_server_url: 'CROWD SERVER URL',
...
...
doc/integration/saml.md
View file @
b95ac096
...
@@ -131,8 +131,76 @@ On the sign in page there should now be a SAML button below the regular sign in
...
@@ -131,8 +131,76 @@ On the sign in page there should now be a SAML button below the regular sign in
Click the icon to begin the authentication process. If everything goes well the user
Click the icon to begin the authentication process. If everything goes well the user
will be returned to GitLab and will be signed in.
will be returned to GitLab and will be signed in.
## External Groups
>**Note:**
This setting is only available on GitLab 8.7 and above.
SAML login includes support for external groups. You can define in the SAML
settings which groups, to which your users belong in your IdP, you wish to be
marked as
[
external
](
../permissions/permissions.md
)
.
### Requirements
First you need to tell GitLab where to look for group information. For this you
need to make sure that your IdP server sends a specific
`AttributeStament`
along
with the regular SAML response. Here is an example:
```
xml
<saml:AttributeStatement>
<saml:Attribute
Name=
"Groups"
>
<saml:AttributeValue
xsi:type=
"xs:string"
>
SecurityGroup
</saml:AttributeValue>
<saml:AttributeValue
xsi:type=
"xs:string"
>
Developers
</saml:AttributeValue>
<saml:AttributeValue
xsi:type=
"xs:string"
>
Designers
</saml:AttributeValue>
</saml:Attribute>
</saml:AttributeStatement>
```
The name of the attribute can be anything you like, but it must contain the groups
to which a user belongs. In order to tell GitLab where to find these groups, you need
to add a
`groups_attribute:`
element to your SAML settings. You will also need to
tell GitLab which groups are external, for that you need the
`external_groups:`
element:
```
yaml
{
name
:
'
saml'
,
label
:
'
Our
SAML
Provider'
,
groups_attribute
:
'
Groups'
,
external_groups
:
[
'
Freelancers'
,
'
Interns'
],
args
:
{
assertion_consumer_service_url
:
'
https://gitlab.example.com/users/auth/saml/callback'
,
idp_cert_fingerprint
:
'
43:51:43:a1:b5:fc:8b:b7:0a:3a:a9:b1:0f:66:73:a8'
,
idp_sso_target_url
:
'
https://login.example.com/idp'
,
issuer
:
'
https://gitlab.example.com'
,
name_identifier_format
:
'
urn:oasis:names:tc:SAML:2.0:nameid-format:transient'
}
}
```
## Customization
## Customization
### `auto_sign_in_with_provider`
You can add this setting to your GitLab configuration to automatically redirect you
to your SAML server for authentication, thus removing the need to click a button
before actually signing in.
For omnibus package:
```
ruby
gitlab_rails
[
'omniauth_auto_sign_in_with_provider'
]
=
'saml'
```
For installations from source:
```
yaml
omniauth
:
auto_sign_in_with_provider
:
saml
```
Please keep in mind that every sign in attempt will be redirected to the SAML server,
so you will not be able to sign in using local credentials. Make sure that at least one
of the SAML users has admin permissions.
### `attribute_statements`
### `attribute_statements`
>**Note:**
>**Note:**
...
@@ -205,6 +273,10 @@ To bypass this you can add `skip_before_action :verify_authenticity_token` to th
...
@@ -205,6 +273,10 @@ To bypass this you can add `skip_before_action :verify_authenticity_token` to th
where it can then be seen in the usual logs, or as a flash message in the login
where it can then be seen in the usual logs, or as a flash message in the login
screen.
screen.
That file is located at
`/opt/gitlab/embedded/service/gitlab-rails/app/controllers`
for Omnibus installations and by default on
`/home/git/gitlab/app/controllers`
for
installations from source.
### Invalid audience
### Invalid audience
This error means that the IdP doesn't recognize GitLab as a valid sender and
This error means that the IdP doesn't recognize GitLab as a valid sender and
...
...
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