Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-09 06:11:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-09 06:11:51 +0300
commitfae5be5632becf76659bf9d85e19d9bedb675c89 (patch)
treea50c439ff465cfd152975e9fae6fc1511e287941 /doc/integration/github.md
parent4d58268e5482283d736298c01e5efa5633ae04e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/integration/github.md')
-rw-r--r--doc/integration/github.md20
1 files changed, 18 insertions, 2 deletions
diff --git a/doc/integration/github.md b/doc/integration/github.md
index d8511691903..ad90c714dac 100644
--- a/doc/integration/github.md
+++ b/doc/integration/github.md
@@ -157,13 +157,29 @@ To fix this issue, you must disable SSL verification:
1. Change the global Git `sslVerify` option to `false` on the GitLab server.
- - **For Omnibus installations**
+ - **For Omnibus installations in [GitLab 15.3](https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/6800) and later**:
+
+ ```ruby
+ gitaly['gitconfig'] = [
+ {key: "http.sslVerify", value: "false"},
+ ]
+ ```
+
+ - **For Omnibus installations in GitLab 15.2 and earlier (legacy method)**:
```ruby
omnibus_gitconfig['system'] = { "http" => ["sslVerify = false"] }
```
- - **For installations from source**
+ - **For installations from source in [GitLab 15.3](https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/6800) and later**, edit the Gitaly configuration (`gitaly.toml`):
+
+ ```toml
+ [[git.config]]
+ key = "http.sslVerify"
+ value = "false"
+ ```
+
+ - **For installations from source in GitLab 15.2 and earlier (legacy method)**:
```shell
git config --global http.sslVerify false