diff options
author | James Moger <james.moger@gitblit.com> | 2012-10-18 08:15:22 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-10-19 22:47:32 -0400 |
commit | 5955a1bc30ae9ef1c1d556595a271233f1eb9344 (patch) | |
tree | cf694d0c5ba30a48224fa5b930c99449ced5eb6f /docs | |
parent | 6d23cab9f5387ca2b57f60b26936ff8af0acc8fa (diff) | |
download | gitblit-5955a1bc30ae9ef1c1d556595a271233f1eb9344.tar.gz gitblit-5955a1bc30ae9ef1c1d556595a271233f1eb9344.zip |
Add note about http.sslVerify to federation docs (issue 146)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/02_federation.mkd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/02_federation.mkd b/docs/02_federation.mkd index da0e6ef2..d83a9e35 100644 --- a/docs/02_federation.mkd +++ b/docs/02_federation.mkd @@ -321,6 +321,13 @@ You may use the `federation.properties` file to configure one or more Gitblit in By default this tool does not daemonize itself; it executes and then quits. This allows you to use the native scheduling feature of your OS. Of course, if you'd rather use Gitblit's scheduler you may use that by specifying the `--daemon` parameter.
+### http.sslVerify
+
+If you are pulling from a Gitblit with a self-signed SSL certificate you will need to configure Git/JGit to bypass certificate verification.
+([Git-Config Manual Page](http://www.kernel.org/pub/software/scm/git/docs/git-config.html))
+
+<pre>git config --global --bool --add http.sslVerify false</pre>
+
### Command-Line Parameters
Instead of using `federation.properties` you may directly specify a Gitblit instance to pull from with command-line parameters.
|