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

118 lines
4.2 KiB
Markdown
Raw Normal View History

2014-09-02 18:07:02 +05:30
# Google OAuth2 OmniAuth Provider
2018-03-17 18:26:18 +05:30
To enable the Google OAuth2 OmniAuth provider you must register your application
with Google. Google will generate a client ID and secret key for you to use.
## Enabling Google OAuth
In Google's side:
1. Navigate to the [cloud resource manager](https://console.cloud.google.com/cloud-resource-manager) page
1. Select **Create Project**
1. Provide the project information:
2019-09-30 21:07:59 +05:30
- **Project name** - "GitLab" works just fine here.
- **Project ID** - Must be unique to all Google Developer registered applications.
Google provides a randomly generated Project ID by default. You can use
the randomly generated ID or choose a new one.
2018-03-17 18:26:18 +05:30
1. Refresh the page and you should see your new project in the list
1. Go to the [Google API Console](https://console.developers.google.com/apis/dashboard)
2019-12-21 20:55:43 +05:30
1. Select the previously created project in the upper left corner
2018-03-17 18:26:18 +05:30
1. Select **Credentials** from the sidebar
1. Select **OAuth consent screen** and fill the form with the required information
1. In the **Credentials** tab, select **Create credentials > OAuth client ID**
1. Fill in the required information
2019-09-30 21:07:59 +05:30
- **Application type** - Choose "Web Application"
- **Name** - Use the default one or provide your own
- **Authorized JavaScript origins** -This isn't really used by GitLab but go
ahead and put `https://gitlab.example.com`
- **Authorized redirect URIs** - Enter your domain name followed by the
callback URIs one at a time:
2020-04-22 19:07:51 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
https://gitlab.example.com/users/auth/google_oauth2/callback
https://gitlab.example.com/-/google_api/auth/callback
```
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. You should now be able to see a Client ID and Client secret. Note them down
or keep this page open as you will need them later.
2018-11-08 19:23:39 +05:30
1. To enable projects to access [Google Kubernetes Engine](../user/project/clusters/index.md), you must also
enable these APIs:
- Google Kubernetes Engine API
- Cloud Resource Manager API
- Cloud Billing API
2014-09-02 18:07:02 +05:30
2019-12-21 20:55:43 +05:30
To do so you need to:
1. Go to the [Google API Console](https://console.developers.google.com/apis/dashboard).
1. Click on **ENABLE APIS AND SERVICES** button at the top of the page.
1. Find each of the above APIs. On the page for the API, press the **ENABLE** button.
It may take a few minutes for the API to be fully functional.
2018-03-17 18:26:18 +05:30
On your GitLab server:
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. Open the configuration file.
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus 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 editor /etc/gitlab/gitlab.rb
```
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
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
sudo -u git -H editor config/gitlab.yml
```
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. See [Initial OmniAuth Configuration](omniauth.md#initial-omniauth-configuration) for initial settings.
1. Add the provider configuration:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus GitLab:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
gitlab_rails['omniauth_providers'] = [
{
"name" => "google_oauth2",
"app_id" => "YOUR_APP_ID",
"app_secret" => "YOUR_APP_SECRET",
"args" => { "access_type" => "offline", "approval_prompt" => '' }
}
]
```
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
```yaml
- { name: 'google_oauth2', app_id: 'YOUR_APP_ID',
app_secret: 'YOUR_APP_SECRET',
args: { access_type: 'offline', approval_prompt: '' } }
```
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. Change `YOUR_APP_ID` to the client ID from the Google Developer page
1. Similarly, change `YOUR_APP_SECRET` to the client secret
1. Make sure that you configure GitLab to use an FQDN as Google will not accept
raw IP addresses.
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus packages:
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
```ruby
external_url 'https://gitlab.example.com'
```
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
```yaml
gitlab:
host: https://gitlab.example.com
```
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
1. Save the configuration file.
2020-04-22 19:07:51 +05:30
1. [Reconfigure](../administration/restart_gitlab.md#omnibus-gitlab-reconfigure) or [restart GitLab](../administration/restart_gitlab.md#installations-from-source) for the changes to take effect if you
2019-09-30 21:07:59 +05:30
installed GitLab via Omnibus or from source respectively.
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
On the sign in page there should now be a Google icon below the regular sign in
form. Click the icon to begin the authentication process. Google will ask the
user to sign in and authorize the GitLab application. If everything goes well
the user will be returned to GitLab and will be signed in.