summaryrefslogtreecommitdiff
path: root/doc/administration/troubleshooting/ssl.md
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-09 00:10:07 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-09 00:10:07 +0000
commitc72613147447f060da53873ba698133198cf416c (patch)
treec4ee34f7dca96bb48033c94910d3865b065c2439 /doc/administration/troubleshooting/ssl.md
parentf26a600a69b3a13d3102d801f5d92d3235ea56d4 (diff)
downloadgitlab-ce-c72613147447f060da53873ba698133198cf416c.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/troubleshooting/ssl.md')
-rw-r--r--doc/administration/troubleshooting/ssl.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/administration/troubleshooting/ssl.md b/doc/administration/troubleshooting/ssl.md
index 98747e33151..c5f3f0ed8d1 100644
--- a/doc/administration/troubleshooting/ssl.md
+++ b/doc/administration/troubleshooting/ssl.md
@@ -251,3 +251,13 @@ You must specify that Git should use OpenSSL:
```shell
git config --system http.sslbackend openssl
```
+
+Alternatively, you can ignore SSL verification by running:
+
+WARNING:
+Proceed with caution when [ignoring SSL](https://git-scm.com/docs/git-config#Documentation/git-config.txt-httpsslVerify)
+due to the potential security issues associated with disabling this option at global level. Use this option _only_ when troubleshooting, and reinstate SSL verification immediately after.
+
+```shell
+git config --global http.sslVerify false
+```