diff options
author | Alex Lossent <alexandre.lossent@cern.ch> | 2015-05-27 16:37:22 +0200 |
---|---|---|
committer | Alex Lossent <alexandre.lossent@cern.ch> | 2015-05-27 16:38:10 +0200 |
commit | 22de5443c5c37772e090268ed115b88d12427cc4 (patch) | |
tree | 8a580bca41b4c71b3d4329b103dc1219dfb23feb /config | |
parent | 4146ce559e8858604ec91d663eac15f9e5379ff0 (diff) | |
download | gitlab-ce-22de5443c5c37772e090268ed115b88d12427cc4.tar.gz |
Add SAML support via Omniauth
Diffstat (limited to 'config')
-rw-r--r-- | config/gitlab.yml.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index fbc7f515f34..5acfe548502 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -210,6 +210,15 @@ production: &base # args: { scope: 'api' } } # - { name: 'bitbucket', app_id: 'YOUR_APP_ID', # app_secret: 'YOUR_APP_SECRET'} + # - { name: 'saml', + # 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' + # } } + |