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

202 lines
7.1 KiB
Markdown
Raw Normal View History

2019-02-15 15:39:39 +05:30
# Integrate your GitLab instance with GitHub
2014-09-02 18:07:02 +05:30
2019-02-15 15:39:39 +05:30
You can integrate your GitLab instance with GitHub.com as well as GitHub Enterprise to enable users to import projects from GitHub and/or to login to your GitLab instance with your GitHub account.
2015-04-26 12:48:37 +05:30
2019-02-15 15:39:39 +05:30
## Enabling GitHub OAuth
2014-09-02 18:07:02 +05:30
2019-02-15 15:39:39 +05:30
To enable GitHub OmniAuth provider, you must use GitHub's credentials for your GitLab instance.
To get the credentials (a pair of Client ID and Client Secret), you must register an application as an OAuth App on GitHub.
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. Sign in to GitHub.
2019-01-03 12:48:30 +05:30
2019-09-30 21:07:59 +05:30
1. Navigate to your individual user or organization settings, depending on how you want the application registered. It does not matter if the application is registered as an individual or an organization - that is entirely up to you.
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
- For individual accounts, select **Developer settings** from the left menu, then select **OAuth Apps**.
- For organization accounts, directly select **OAuth Apps** from the left menu.
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. Select **Register an application** (if you don't have any OAuth App) or **New OAuth App** (if you already have OAuth Apps).
![Register OAuth App](img/github_app_entry.png)
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. Provide the required details.
- Application name: This can be anything. Consider something like `<Organization>'s GitLab` or `<Your Name>'s GitLab` or something else descriptive.
- Homepage URL: The URL of your GitLab installation. For example, `https://gitlab.example.com`.
- Application description: Fill this in if you wish.
- Authorization callback URL: `http(s)://${YOUR_DOMAIN}/users/auth`. Please make sure the port is included if your GitLab instance is not configured on default port.
![Register OAuth App](img/github_register_app.png)
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
NOTE: Be sure to append `/users/auth` to the end of the callback URL
to prevent a [OAuth2 convert
redirect](http://tetraph.com/covert_redirect/) vulnerability.
2019-02-02 18:00:53 +05:30
2019-09-30 21:07:59 +05:30
1. Select **Register application**.
2019-02-02 18:00:53 +05:30
2019-09-30 21:07:59 +05:30
1. You should now see a pair of **Client ID** and **Client Secret** near the top right of the page (see screenshot).
Keep this page open as you continue configuration.
![GitHub app](img/github_app.png)
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. On your GitLab server, open the configuration file.
2014-09-02 18:07:02 +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
```sh
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:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
```sh
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
1. See [Initial OmniAuth Configuration](omniauth.md#initial-omniauth-configuration) for initial settings.
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
1. Add the provider configuration:
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
For GitHub.com:
2017-08-17 22:00:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
gitlab_rails['omniauth_providers'] = [
{
"name" => "github",
"app_id" => "YOUR_APP_ID",
"app_secret" => "YOUR_APP_SECRET",
"args" => { "scope" => "user:email" }
}
]
```
2017-08-17 22:00:37 +05:30
2019-09-30 21:07:59 +05:30
For GitHub Enterprise:
2017-08-17 22:00:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
gitlab_rails['omniauth_providers'] = [
{
"name" => "github",
"app_id" => "YOUR_APP_ID",
"app_secret" => "YOUR_APP_SECRET",
"url" => "https://github.example.com/",
"args" => { "scope" => "user:email" }
}
]
```
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
For installation from source:
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
For GitHub.com:
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
```
- { name: 'github', app_id: 'YOUR_APP_ID',
app_secret: 'YOUR_APP_SECRET',
args: { scope: 'user:email' } }
```
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
For GitHub Enterprise:
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
```
- { name: 'github', app_id: 'YOUR_APP_ID',
app_secret: 'YOUR_APP_SECRET',
url: "https://github.example.com/",
args: { scope: 'user:email' } }
```
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
__Replace `https://github.example.com/` with your GitHub URL.__
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
1. Change `YOUR_APP_ID` to the Client ID from the GitHub application page from step 6.
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. Change `YOUR_APP_SECRET` to the Client Secret from the GitHub application page from step 6.
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. Save the configuration file.
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
1. [Reconfigure GitLab][] or [restart GitLab][] for the changes to take effect if you
installed GitLab via Omnibus or from source respectively.
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
On the sign in page there should now be a GitHub icon below the regular sign in form.
Click the icon to begin the authentication process. GitHub will ask the user to sign in and authorize the GitLab application.
2015-04-26 12:48:37 +05:30
If everything goes well the user will be returned to GitLab and will be signed in.
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
## GitHub Enterprise with self-signed Certificate
2017-09-10 17:25:29 +05:30
If you are attempting to import projects from GitHub Enterprise with a self-signed
certificate and the imports are failing, you will need to disable SSL verification.
It should be disabled by adding `verify_ssl` to `false` in the provider configuration
and changing the global Git `sslVerify` option to `false` in the GitLab server.
2019-12-04 20:38:33 +05:30
For Omnibus package:
2017-09-10 17:25:29 +05:30
```ruby
2019-09-30 21:07:59 +05:30
gitlab_rails['omniauth_providers'] = [
{
"name" => "github",
"app_id" => "YOUR_APP_ID",
"app_secret" => "YOUR_APP_SECRET",
"url" => "https://github.example.com/",
"verify_ssl" => false,
"args" => { "scope" => "user:email" }
}
]
2017-09-10 17:25:29 +05:30
```
You will also need to disable Git SSL verification on the server hosting GitLab.
```ruby
omnibus_gitconfig['system'] = { "http" => ["sslVerify = false"] }
```
For installation from source:
```
2019-09-30 21:07:59 +05:30
- { name: 'github', app_id: 'YOUR_APP_ID',
app_secret: 'YOUR_APP_SECRET',
url: "https://github.example.com/",
verify_ssl: false,
args: { scope: 'user:email' } }
2017-09-10 17:25:29 +05:30
```
You will also need to disable Git SSL verification on the server hosting GitLab.
```
2019-12-04 20:38:33 +05:30
git config --global http.sslVerify false
2017-09-10 17:25:29 +05:30
```
2018-12-05 23:21:45 +05:30
For the changes to take effect, [reconfigure GitLab] if you installed
2017-09-10 17:25:29 +05:30
via Omnibus, or [restart GitLab] if you installed from source.
[reconfigure GitLab]: ../administration/restart_gitlab.md#omnibus-gitlab-reconfigure
2017-08-17 22:00:37 +05:30
[restart GitLab]: ../administration/restart_gitlab.md#installations-from-source
2020-01-01 13:55:28 +05:30
## Troubleshooting
### Error 500 when trying to sign in to GitLab via GitHub Enterprise
Check the [`production.log`](../administration/logs.md#productionlog)
on your GitLab server to obtain further details. If you are getting the error like
`Faraday::ConnectionFailed (execution expired)` in the log, there may be a connectivity issue
between your GitLab instance and GitHub Enterprise. To verify it, [start the rails console](https://docs.gitlab.com/omnibus/maintenance/#starting-a-rails-console-session)
and run the commands below replacing `<github_url>` with the URL of your GitHub Enterprise instance:
```ruby
uri = URI.parse("https://<github_url>") # replace `GitHub-URL` with the real one here
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = 1
response = http.request(Net::HTTP::Get.new(uri.request_uri))
```
If you are getting a similar `execution expired` error, it confirms the theory about the
network connectivity. In that case, make sure that the GitLab server is able to reach your
GitHub enterprise instance.
### Signing in using your GitHub account without a pre-existing GitLab account is not allowed
If you're getting the message `Signing in using your GitHub account without a pre-existing
GitLab account is not allowed. Create a GitLab account first, and then connect it to your
GitHub account` when signing in, in GitLab:
1. Go to your **Profile > Account**.
1. Under the "Social sign-in" section, click **Connect** near the GitHub icon.
After that, you should be able to sign in via GitHub successfully.