Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
c13e0933
Commit
c13e0933
authored
May 22, 2017
by
Cindy Pallares
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add extra step in GHE import docs
parent
45e3658d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
doc/integration/github.md
doc/integration/github.md
+13
-8
No files found.
doc/integration/github.md
View file @
c13e0933
...
@@ -114,7 +114,8 @@ If everything goes well the user will be returned to GitLab and will be signed i
...
@@ -114,7 +114,8 @@ If everything goes well the user will be returned to GitLab and will be signed i
If you are attempting to import projects from GitHub Enterprise with a self-signed
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.
certificate and the imports are failing, you will need to disable SSL verification.
It should be disabled by adding
`verify_ssl`
to
`false`
to the provider configuration.
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.
For omnibus package:
For omnibus package:
...
@@ -131,6 +132,12 @@ For omnibus package:
...
@@ -131,6 +132,12 @@ For omnibus package:
]
]
```
```
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:
For installation from source:
```
```
...
@@ -141,16 +148,14 @@ For installation from source:
...
@@ -141,16 +148,14 @@ For installation from source:
args: { scope: 'user:email' } }
args: { scope: 'user:email' } }
```
```
You will also need to disable Git SSL verification on the server hosting GitLab.
For the changes to take effect, [reconfigure Gitlab] if you installed
via Omnibus, or [restart GitLab] if you installed from source.
You will also need to disable Git SSL verification on the server hosting GitLab with the following command:
```
```
$ git config --global http.sslVerify false
$ git config --global http.sslVerify false
```
```
[
reconfigure GitLab
]:
../administration/restart_gitlab.md#omnibus-gitlab-reconfigure
[
restart GitLab
]:
../administration/restart_gitlab.md#installations-from-source
For the changes to take effect, [reconfigure Gitlab] if you installed
via Omnibus, or [restart GitLab] if you installed from source.
[
reconfigure GitLab
]:
../administration/restart_gitlab.md#omnibus-gitlab-reconfigure
[
restart GitLab
]:
../administration/restart_gitlab.md#installations-from-source
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment