Skip to content
Snippets Groups Projects
Select Git revision
  • ag-test
  • rs-test
  • master default protected
  • test-me-pa
  • mksionek-master-patch-52381
  • new-branch-10
  • test-conflicts
  • test-suggestions
  • alejandro-test
  • patch-25
  • winh-test-image-doscussion
  • stg-lfs-image-test-2
  • stg-lfs-image-test
  • test42016
  • issue_42016
  • issue-32709
  • add-codeowners
  • ClemMakesApps-master-patch-62759
  • bvl-staging-test
  • bvl-merge-base-api
  • v9.2.0-rc6 protected
  • v9.2.0-rc5 protected
  • v9.2.0-rc4 protected
  • v9.2.0-rc3 protected
  • v9.1.4 protected
  • v9.2.0-rc2 protected
  • v9.2.0-rc1 protected
  • v9.1.3 protected
  • v8.17.6 protected
  • v9.0.7 protected
  • v9.1.2 protected
  • v9.1.1 protected
  • v9.2.0.pre protected
  • v9.1.0 protected
  • v9.1.0-rc7 protected
  • v9.1.0-rc6 protected
  • v9.0.6 protected
  • v9.1.0-rc5 protected
  • v9.1.0-rc4 protected
  • v9.1.0-rc3 protected
40 results

markdown_spec.rb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    omniauth.md NaN GiB

    OmniAuth

    GitLab leverages OmniAuth to allow users to sign in using Twitter, GitHub, and other popular services.

    Configuring OmniAuth does not prevent standard GitLab authentication or LDAP (if configured) from continuing to work. Users can choose to sign in using any of the configured mechanisms.

    Supported Providers

    This is a list of the current supported OmniAuth providers. Before proceeding on each provider's documentation, make sure to first read this document as it contains some settings that are common for all providers.

    Initial OmniAuth Configuration

    Before configuring individual OmniAuth providers there are a few global settings that are in common for all providers that we need to consider.

    • Omniauth needs to be enabled, see details below for example.
    • allow_single_sign_on allows you to specify the providers you want to allow to automatically create an account. It defaults to false. If false users must be created manually or they will not be able to sign in via OmniAuth.
    • block_auto_created_users defaults to true. If true auto created users will be blocked by default and will have to be unblocked by an administrator before they are able to sign in.

    Note: If you set block_auto_created_users to false, make sure to only define providers under allow_single_sign_on that you are able to control, like SAML, Shibboleth, Crowd or Google, or set it to false otherwise any user on the Internet will be able to successfully sign in to your GitLab without administrative approval.

    To change these settings:

    • For omnibus package

      Open the configuration file:

      sudo editor /etc/gitlab/gitlab.rb

      and change:

      gitlab_rails['omniauth_enabled'] = true
      
      # CAUTION!
      # This allows users to login without having a user account first. Define the allowed providers
      # using an array, e.g. ["saml", "twitter"], or as true/false to allow all providers or none.
      # User accounts will be created automatically when authentication was successful.
      gitlab_rails['omniauth_allow_single_sign_on'] = ['saml', 'twitter']
      gitlab_rails['omniauth_block_auto_created_users'] = true
    • For installations from source

      Open the configuration file:

      cd /home/git/gitlab
      
      sudo -u git -H editor config/gitlab.yml

      and change the following section:

       ## OmniAuth settings
        omniauth:
          # Allow login via Twitter, Google, etc. using OmniAuth providers
          enabled: true
      
          # CAUTION!
          # This allows users to login without having a user account first. Define the allowed providers
          # using an array, e.g. ["saml", "twitter"], or as true/false to allow all providers or none.
          # User accounts will be created automatically when authentication was successful.
          allow_single_sign_on: ["saml", "twitter"]
      
          # Locks down those users until they have been cleared by the admin (default: true).
          block_auto_created_users: true

    Now we can choose one or more of the Supported Providers listed above to continue the configuration process.

    Enable OmniAuth for an Existing User

    Existing users can enable OmniAuth for specific providers after the account is created. For example, if the user originally signed in with LDAP, an OmniAuth provider such as Twitter can be enabled. Follow the steps below to enable an OmniAuth provider for an existing user.

    1. Sign in normally - whether standard sign in, LDAP, or another OmniAuth provider.
    2. Go to profile settings (the silhouette icon in the top right corner).
    3. Select the "Account" tab.
    4. Under "Connected Accounts" select the desired OmniAuth provider, such as Twitter.
    5. The user will be redirected to the provider. Once the user authorized GitLab they will be redirected back to GitLab.

    The chosen OmniAuth provider is now active and can be used to sign in to GitLab from then on.

    Configure OmniAuth Providers as External

    Note: This setting was introduced with version 8.7 of GitLab