2 @heading=Root Certificate
5 <!-- This file is preprocessed by cgi/html.cgi -->
8 <p>This site provides https support in order to support the Git smart HTTP
11 <p>This obviously requires this site to have an SSL server certificate. In order
12 to avoid the hassle (and the cost) of getting an SSL server certificate that
13 has been signed by a root certificate already included (and trusted) by your
14 browser, this site uses its own root certificate.
</p>
16 <p>The root certificate for this site is available from:
</p>
18 <a href=
"@@path(webadmurl)@@/@@nickname@@_root_cert.pem">@@server(webadmurl)@@/@@nickname@@_root_cert.pem
</a>
20 md5:
<tt>@@md5(@@nickname@@_root_cert.pem)@@
</tt>
22 sha1:
<tt>@@sha1(@@nickname@@_root_cert.pem)@@
</tt>
25 <p>Also see the
<a href=
"@@path(htmlurl)@@/httpspush.html">full instructions on configuring your Git client for https push
</a>.
</p>
27 <p>A side effect of using an unrecognized root certificate is that Git may
28 complain with an error such as:
</p>
30 <tt>error: server certificate verification failed
</tt>
33 <p>To see this error in action, simply execute this git command:
</p>
35 git ls-remote @@httpspushurl@@/girocco.git
38 <p>Instead of downloading the server
’s root certificate, server certificate verification may be disabled with one of these techniques:
</p>
41 <li>Set the
<tt>GIT_SSL_NO_VERIFY
</tt> environment variable like so:
43 GIT_SSL_NO_VERIFY=
1 git ls-remote @@httpspushurl@@/girocco.git
46 <li>Temporarily set the git configuration variable
<tt>http.sslVerify
</tt> like so:
48 git -c http.sslVerify=false \
49 ls-remote @@httpspushurl@@/girocco.git
51 <p>Note that the
<tt>-c
</tt> option requires Git version
1.7.2 or later.
</p></li>
54 <p>Or, after downloading the root certificate for this site, the error may be
55 avoided through various methods by specifying the root certificate.
<br />
56 For each of these methods, the root certificate will be assumed to be downloaded
57 and saved to the file
<tt>$HOME/certs/@@nickname@@_root_cert.pem
</tt>.
</p>
59 <p id=
"git185">Using Git version
1.8.5 or later (recommended):
</p>
62 <li>Configure the global
<tt>http.sslCAInfo
</tt> variable but only for this site like so:
64 git config --global http.@@base(httpspushurl)@@.sslCAInfo \
65 $HOME/certs/@@nickname@@_root_cert.pem
67 <p>Note that this technique requires Git version
1.8.5 or later on the client but has the advantage of only needing to be done once.
</p></li>
70 <p>Using any version of Git:
</p>
73 <li>Set the
<tt>GIT_SSL_CAINFO
</tt> environment variable before running git like so:
75 GIT_SSL_CAINFO=$HOME/certs/@@nickname@@_root_cert.pem \
76 git ls-remote @@httpspushurl@@/girocco.git
79 <li>Temporarily set the git configuration variable
<tt>http.sslCAInfo
</tt> like so:
81 git -c http.sslCAInfo=$HOME/certs/@@nickname@@_root_cert.pem \
82 ls-remote @@httpspushurl@@/girocco.git
85 <li>Configure the git
<tt>http.sslCAInfo
</tt> variable like so:
87 git config http.sslCAInfo $HOME/certs/@@nickname@@_root_cert.pem
89 <p>Note that this technique works best after the repository has already been cloned
90 or initialized.
</p></li>
93 <p>For further details see the
<tt>git help config
</tt> output.
</p>
96 <p>For information on how to push to the mob branch using https see
<a href=
"@@path(htmlurl)@@/mob.html#httpsmobpush">here
</a>.
</p>