Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. gitlab_rails['omniauth_enabled'] = true
  2. gitlab_rails['omniauth_allow_single_sign_on'] = false
  3. gitlab_rails['omniauth_block_auto_created_users'] = false
  4. gitlab_rails['omniauth_providers'] = [
  5. {
  6. "name" => "saml",
  7. args: {
  8. assertion_consumer_service_url: 'https://git.mycompany.com/users/auth/saml/callback',
  9. idp_cert_fingerprint: 'XX:YY:ZZ',
  10. idp_sso_target_url: 'https://myidentity.com/SAAS/auth/federation/sso',
  11. issuer: 'https://git.mycompany.com',
  12. name_identifier_format: 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress'
  13. }
  14. }
  15. ]
  16.  
  17. gitlab_rails['omniauth_allow_single_sign_on'] = true
  18. gitlab_rails['omniauth_block_auto_created_users'] = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement