PageRenderTime 44ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/doc/integration/google.md

https://gitlab.com/win32/gitlab-ce
Markdown | 89 lines | 59 code | 30 blank | 0 comment | 0 complexity | 375f8ac14896ff8ed7bf288f149a0182 MD5 | raw file
Possible License(s): CC-BY-3.0
  1. # Google OAuth2 OmniAuth Provider
  2. 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.
  3. 1. Sign in to the [Google Developers Console](https://console.developers.google.com/) with the Google account you want to use to register GitLab.
  4. 1. Select "Create Project".
  5. 1. Provide the project information
  6. - Project name: 'GitLab' works just fine here.
  7. - 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.
  8. 1. Refresh the page. You should now see your new project in the list. Click on the project.
  9. 1. Select "APIs & auth" in the left menu.
  10. 1. Select "APIs" in the submenu.
  11. - Enable `Contacts API`
  12. - Enable `Google+ API`
  13. 1. Select "Credentials" in the submenu.
  14. 1. Select "Create New Client ID".
  15. 1. Fill in the required information
  16. - Application type: "Web Application"
  17. - Authorized JavaScript origins: This isn't really used by GitLab but go ahead and put 'https://gitlab.example.com' here.
  18. - Authorized redirect URI: 'https://gitlab.example.com/users/auth/google_oauth2/callback'
  19. 1. Under the heading "Client ID for web application" you should see a Client ID and Client secret (see screenshot). Keep this page open as you continue configuration. ![Google app](google_app.png)
  20. 1. On your GitLab server, open the configuration file.
  21. For omnibus package:
  22. ```sh
  23. sudo editor /etc/gitlab/gitlab.rb
  24. ```
  25. For instalations from source:
  26. ```sh
  27. cd /home/git/gitlab
  28. sudo -u git -H editor config/gitlab.yml
  29. ```
  30. 1. See [Initial OmniAuth Configuration](omniauth.md#initial-omniauth-configuration) for initial settings.
  31. 1. Add the provider configuration:
  32. For omnibus package:
  33. ```ruby
  34. gitlab_rails['omniauth_providers'] = [
  35. {
  36. "name" => "google_oauth2",
  37. "app_id" => "YOUR_APP_ID",
  38. "app_secret" => "YOUR_APP_SECRET",
  39. "args" => { "access_type" => "offline", "approval_prompt" => '' }
  40. }
  41. ]
  42. ```
  43. For installations from source:
  44. ```
  45. - { name: 'google_oauth2', app_id: 'YOUR_APP_ID',
  46. app_secret: 'YOUR_APP_SECRET',
  47. args: { access_type: 'offline', approval_prompt: '' } }
  48. ```
  49. 1. Change 'YOUR_APP_ID' to the client ID from the Google Developer page from step 10.
  50. 1. Change 'YOUR_APP_SECRET' to the client secret from the Google Developer page from step 10.
  51. 1. Save the configuration file.
  52. 1. Restart GitLab for the changes to take effect.
  53. 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.
  54. ## Further Configuration
  55. This further configuration is not required for Google authentication to function but it is strongly recommended. Taking these steps will increase usability for users by providing a little more recognition and branding.
  56. At this point, when users first try to authenticate to your GitLab installation with Google they will see a generic application name on the prompt screen. The prompt informs the user that "Project Default Service Account" would like to access their account. "Project Default Service Account" isn't very recognizable and may confuse or cause users to be concerned. This is easily changeable.
  57. 1. Select 'Consent screen' in the left menu. (See steps 1, 4 and 5 above for instructions on how to get here if you closed your window).
  58. 1. Scroll down until you find "Product Name". Change the product name to something more descriptive.
  59. 1. Add any additional information as you wish - homepage, logo, privacy policy, etc. None of this is required, but it may help your users.