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>A side effect of using an unrecognized root certificate is that Git may
26 complain with an error such as:
</p>
28 <tt>error: server certificate verification failed
</tt>
31 <p>To see this error in action, simply execute this git command:
</p>
33 git ls-remote @@httpspushurl@@/girocco.git
36 <p>Instead of downloading the server
’s root certificate, server certificate verification may be disabled with one of these techniques:
</p>
39 <li>Set the
<tt>GIT_SSL_NO_VERIFY
</tt> environment variable like so:
41 GIT_SSL_NO_VERIFY=
1 git ls-remote @@httpspushurl@@/girocco.git
44 <li>Temporarily set the git configuration variable
<tt>http.sslVerify
</tt> like so:
46 git -c http.sslVerify=false \
47 ls-remote @@httpspushurl@@/girocco.git
51 <p>Or, after downloading the root certificate for this site, the error may be
52 avoided through various methods by specifying the root certificate.
<br />
53 For each of these methods, the root certificate will be assumed to be downloaded
54 and saved to the file
<tt>$HOME/certs/@@nickname@@_root_cert.pem
</tt>.
</p>
56 <p id=
"git185">Using Git version
1.8.5 or later (recommended):
</p>
59 <li>Configure the global
<tt>http.sslCAInfo
</tt> variable but only for this site like so:
61 git config --global http.@@base(httpspushurl)@@.sslCAInfo \
62 $HOME/certs/@@nickname@@_root_cert.pem
64 <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>
67 <p>Using any version of Git:
</p>
70 <li>Set the
<tt>GIT_SSL_CAINFO
</tt> environment variable before running git like so:
72 GIT_SSL_CAINFO=$HOME/certs/@@nickname@@_root_cert.pem \
73 git ls-remote @@httpspushurl@@/girocco.git
76 <li>Temporarily set the git configuration variable
<tt>http.sslCAInfo
</tt> like so:
78 git -c http.sslCAInfo=$HOME/certs/@@nickname@@_root_cert.pem \
79 ls-remote @@httpspushurl@@/girocco.git
82 <li>Configure the git
<tt>http.sslCAInfo
</tt> variable like so:
84 git config http.sslCAInfo $HOME/certs/@@nickname@@_root_cert.pem
86 <p>Note that this technique works best after the repository has already been cloned
87 or initialized.
</p></li>
90 <p>For further details see the
<tt>git help config
</tt> output.
</p>
93 <p>For information on how to push to the mob branch using https see
<a href=
"@@path(htmlurl)@@/mob.html#httpsmobpush">here
</a>.
</p>