debian-mirror-gitlab/doc/integration/omniauth.md

329 lines
11 KiB
Markdown
Raw Normal View History

2014-09-02 18:07:02 +05:30
# OmniAuth
2016-06-02 11:05:42 +05:30
GitLab leverages OmniAuth to allow users to sign in using Twitter, GitHub, and
other popular services.
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
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.
2014-09-02 18:07:02 +05:30
- [Initial OmniAuth Configuration](#initial-omniauth-configuration)
- [Supported Providers](#supported-providers)
- [Enable OmniAuth for an Existing User](#enable-omniauth-for-an-existing-user)
2015-04-26 12:48:37 +05:30
- [OmniAuth configuration sample when using Omnibus GitLab](https://gitlab.com/gitlab-org/omnibus-gitlab/tree/master#omniauth-google-twitter-github-login)
2016-06-02 11:05:42 +05:30
- [Enable or disable Sign In with an OmniAuth provider without disabling import sources](#enable-or-disable-sign-in-with-an-omniauth-provider-without-disabling-import-sources)
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
## 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.
- [GitHub](github.md)
- [Bitbucket](bitbucket.md)
- [GitLab.com](gitlab.md)
- [Google](google.md)
- [Facebook](facebook.md)
- [Twitter](twitter.md)
- [Shibboleth](shibboleth.md)
- [SAML](saml.md)
2017-08-17 22:00:37 +05:30
- [Crowd](../administration/auth/crowd.md)
2016-04-02 18:10:28 +05:30
- [Azure](azure.md)
2016-06-02 11:05:42 +05:30
- [Auth0](auth0.md)
2017-08-17 22:00:37 +05:30
- [Authentiq](../administration/auth/authentiq.md)
- [OAuth2Generic](oauth2_generic.md)
2018-05-09 12:01:36 +05:30
- [JWT](../administration/auth/jwt.md)
2019-07-31 22:56:46 +05:30
- [OpenID Connect](../administration/auth/oidc.md)
- [UltraAuth](ultra_auth.md)
2019-12-21 20:55:43 +05:30
- [Salesforce](salesforce.md)
2020-04-08 14:13:33 +05:30
- [AWS Cognito](../administration/auth/cognito.md)
2016-04-02 18:10:28 +05:30
2014-09-02 18:07:02 +05:30
## Initial OmniAuth Configuration
2016-06-02 11:05:42 +05:30
Before configuring individual OmniAuth providers there are a few global settings
that are in common for all providers that we need to consider.
2014-09-02 18:07:02 +05:30
2018-12-05 23:21:45 +05:30
> **NOTE:**
2019-12-21 20:55:43 +05:30
> Starting from GitLab 11.4, OmniAuth is enabled by default. If you're using an
2018-12-05 23:21:45 +05:30
> earlier version, you'll need to explicitly enable it.
2016-06-02 11:05:42 +05:30
- `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.
2017-08-17 22:00:37 +05:30
- `auto_link_ldap_user` can be used if you have [LDAP / ActiveDirectory](ldap.md)
2020-05-24 23:13:21 +05:30
integration enabled. It defaults to `false`. When enabled, users automatically
2020-04-08 14:13:33 +05:30
created through an OmniAuth provider will have their LDAP identity created in GitLab as well.
2016-06-02 11:05:42 +05:30
- `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.
2018-11-20 20:47:30 +05:30
> **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.
>
> **Note:**
> `auto_link_ldap_user` requires the `uid` of the user to be the same in both LDAP
> and the OmniAuth provider.
2017-08-17 22:00:37 +05:30
2016-06-02 11:05:42 +05:30
To change these settings:
2015-04-26 12:48:37 +05:30
2019-12-04 20:38:33 +05:30
- **For Omnibus package**
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
Open the configuration file:
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo editor /etc/gitlab/gitlab.rb
```
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
and change:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
# 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_auto_link_ldap_user'] = true
gitlab_rails['omniauth_block_auto_created_users'] = true
```
2015-04-26 12:48:37 +05:30
2019-03-02 22:35:43 +05:30
- **For installations from source**
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
Open the configuration file:
2014-09-02 18:07:02 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
cd /home/git/gitlab
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
sudo -u git -H editor config/gitlab.yml
```
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
and change the following section:
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
```yaml
## OmniAuth settings
omniauth:
# Allow login via Twitter, Google, etc. using OmniAuth providers
# Versions prior to 11.4 require this to be set to true
# enabled: true
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
# 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"]
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
auto_link_ldap_user: true
2017-08-17 22:00:37 +05:30
2019-09-30 21:07:59 +05:30
# Locks down those users until they have been cleared by the admin (default: true).
block_auto_created_users: true
```
2014-09-02 18:07:02 +05:30
2016-09-29 09:46:39 +05:30
Now we can choose one or more of the [Supported Providers](#supported-providers)
listed above to continue the configuration process.
2014-09-02 18:07:02 +05:30
## Enable OmniAuth for an Existing User
2016-06-02 11:05:42 +05:30
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.
2014-09-02 18:07:02 +05:30
1. Sign in normally - whether standard sign in, LDAP, or another OmniAuth provider.
1. Go to profile settings (the silhouette icon in the top right corner).
1. Select the "Account" tab.
2015-09-11 14:41:01 +05:30
1. Under "Connected Accounts" select the desired OmniAuth provider, such as Twitter.
2016-06-02 11:05:42 +05:30
1. The user will be redirected to the provider. Once the user authorized GitLab
they will be redirected back to GitLab.
2014-09-02 18:07:02 +05:30
The chosen OmniAuth provider is now active and can be used to sign in to GitLab from then on.
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
## Configure OmniAuth Providers as External
>**Note:**
This setting was introduced with version 8.7 of GitLab
You can define which OmniAuth providers you want to be `external` so that all users
2016-08-24 12:49:21 +05:30
**creating accounts, or logging in via these providers** will not be able to have
access to internal projects. You will need to use the full name of the provider,
like `google_oauth2` for Google. Refer to the examples for the full names of the
supported providers.
>**Note:**
If you decide to remove an OmniAuth provider from the external providers list
you will need to manually update the users that use this method to login, if you
want their accounts to be upgraded to full internal accounts.
2016-06-02 11:05:42 +05:30
**For Omnibus installations**
```ruby
2019-09-30 21:07:59 +05:30
gitlab_rails['omniauth_external_providers'] = ['twitter', 'google_oauth2']
2016-06-02 11:05:42 +05:30
```
**For installations from source**
```yaml
2019-09-30 21:07:59 +05:30
omniauth:
external_providers: ['twitter', 'google_oauth2']
2016-06-02 11:05:42 +05:30
```
2019-12-21 20:55:43 +05:30
## Using Custom OmniAuth Providers
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
>**Note:**
The following information only applies for installations from source.
2019-12-21 20:55:43 +05:30
GitLab uses [OmniAuth](https://github.com/omniauth/omniauth) for authentication and already ships
2016-06-02 11:05:42 +05:30
with a few providers pre-installed (e.g. LDAP, GitHub, Twitter). But sometimes that
is not enough and you need to integrate with other authentication solutions. For
2019-12-21 20:55:43 +05:30
these cases you can use the OmniAuth provider.
2015-04-26 12:48:37 +05:30
### Steps
2016-06-02 11:05:42 +05:30
These steps are fairly general and you will need to figure out the exact details
2019-12-21 20:55:43 +05:30
from the OmniAuth provider's documentation.
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
- Stop GitLab:
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo service gitlab stop
```
2015-04-26 12:48:37 +05:30
2019-12-21 20:55:43 +05:30
- Add the gem to your [Gemfile](https://gitlab.com/gitlab-org/gitlab/blob/master/Gemfile):
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
gem "omniauth-your-auth-provider"
```
2015-04-26 12:48:37 +05:30
2019-12-21 20:55:43 +05:30
- Install the new OmniAuth provider gem by running the following command:
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo -u git -H bundle install --without development test mysql --path vendor/bundle --no-deployment
```
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
> These are the same commands you used during initial installation in the [Install Gems section](../install/installation.md#install-gems) with `--path vendor/bundle --no-deployment` instead of `--deployment`.
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
- Start GitLab:
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo service gitlab start
```
2015-04-26 12:48:37 +05:30
### Examples
2016-06-02 11:05:42 +05:30
If you have successfully set up a provider that is not shipped with GitLab itself,
please let us know.
You can help others by reporting successful configurations and probably share a
few insights or provide warnings for common errors or pitfalls by sharing your
experience [in the public Wiki](https://github.com/gitlabhq/gitlab-public-wiki/wiki/Custom-omniauth-provider-configurations).
While we can't officially support every possible authentication mechanism out there,
we'd like to at least help those with specific needs.
## Enable or disable Sign In with an OmniAuth provider without disabling import sources
>**Note:**
This setting was introduced with version 8.8 of GitLab.
Administrators are able to enable or disable Sign In via some OmniAuth providers.
>**Note:**
By default Sign In is enabled via all the OAuth Providers that have been configured in `config/gitlab.yml`.
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
In order to enable/disable an OmniAuth provider, go to Admin Area -> Settings -> Sign-in Restrictions section -> Enabled OAuth Sign-In sources and select the providers you want to enable or disable.
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
![Enabled OAuth Sign-In sources](img/enabled-oauth-sign-in-sources.png)
2018-03-17 18:26:18 +05:30
2019-12-21 20:55:43 +05:30
## Disabling OmniAuth
2018-12-05 23:21:45 +05:30
2019-12-21 20:55:43 +05:30
Starting from version 11.4 of GitLab, OmniAuth is enabled by default. This only
2018-12-05 23:21:45 +05:30
has an effect if providers are configured and [enabled](#enable-or-disable-sign-in-with-an-omniauth-provider-without-disabling-import-sources).
2019-12-21 20:55:43 +05:30
If OmniAuth providers are causing problems even when individually disabled, you
can disable the entire OmniAuth subsystem by modifying the configuration file:
2018-12-05 23:21:45 +05:30
**For Omnibus installations**
```ruby
gitlab_rails['omniauth_enabled'] = false
```
**For installations from source**
```yaml
2019-09-30 21:07:59 +05:30
omniauth:
enabled: false
2018-12-05 23:21:45 +05:30
```
2018-03-17 18:26:18 +05:30
## Keep OmniAuth user profiles up to date
You can enable profile syncing from selected OmniAuth providers and for all or for specific user information.
2019-07-07 11:18:12 +05:30
When authenticating using LDAP, the user's name and email are always synced.
2018-03-17 18:26:18 +05:30
2018-11-20 20:47:30 +05:30
```ruby
2020-03-13 15:44:24 +05:30
gitlab_rails['omniauth_sync_profile_from_provider'] = ['twitter', 'google_oauth2']
gitlab_rails['omniauth_sync_profile_attributes'] = ['name', 'email', 'location']
2019-09-30 21:07:59 +05:30
```
2018-03-17 18:26:18 +05:30
2018-11-20 20:47:30 +05:30
**For installations from source**
2018-03-17 18:26:18 +05:30
2018-11-20 20:47:30 +05:30
```yaml
2019-09-30 21:07:59 +05:30
omniauth:
sync_profile_from_provider: ['twitter', 'google_oauth2']
sync_profile_attributes: ['email', 'location']
2018-11-20 20:47:30 +05:30
```
2019-12-04 20:38:33 +05:30
## Bypassing two factor authentication
Starting with GitLab 12.3, this allows users to login with the specified
providers without two factor authentication.
Define the allowed providers using an array, e.g. `["twitter", 'google_oauth2']`, or as
`true`/`false` to allow all providers or none. This option should only be configured
for providers which already have two factor authentication (default: false).
This configration dose not apply to SAML.
```ruby
gitlab_rails['omniauth_allow_bypass_two_factor'] = ['twitter', 'google_oauth2']
```
**For installations from source**
```yaml
omniauth:
allow_bypass_two_factor: ['twitter', 'google_oauth2']
```
## Automatically sign in with provider
You can add the `auto_sign_in_with_provider` setting to your
GitLab configuration to automatically redirect login requests
to your OmniAuth provider for authentication, thus removing the need to click a button
before actually signing in.
For example, when using the Azure integration, you would set the following
to enable auto sign in.
For Omnibus package:
```ruby
gitlab_rails['omniauth_auto_sign_in_with_provider'] = 'azure_oauth2'
```
For installations from source:
```yaml
omniauth:
auto_sign_in_with_provider: azure_oauth2
```
Please keep in mind that every sign in attempt will be redirected to the OmniAuth provider,
so you will not be able to sign in using local credentials. Make sure that at least one
of the OmniAuth users has admin permissions.
You may also bypass the auto signin feature by browsing to
`https://gitlab.example.com/users/sign_in?auto_sign_in=false`.