##// END OF EJS Templates
help: fix indentation on cacert (issue3350)...
Matt Mackall -
r16399:7416ce2c default
parent child Browse files
Show More
@@ -1293,7 +1293,20 b' The full set of options is:'
1293 1293 authority certificates. Environment variables and ``~user``
1294 1294 constructs are expanded in the filename. If specified on the
1295 1295 client, then it will verify the identity of remote HTTPS servers
1296 with these certificates. The form must be as follows::
1296 with these certificates.
1297
1298 This feature is only supported when using Python 2.6 or later. If you wish
1299 to use it with earlier versions of Python, install the backported
1300 version of the ssl library that is available from
1301 ``http://pypi.python.org``.
1302
1303 To disable SSL verification temporarily, specify ``--insecure`` from
1304 command line.
1305
1306 You can use OpenSSL's CA certificate file if your platform has
1307 one. On most Linux systems this will be
1308 ``/etc/ssl/certs/ca-certificates.crt``. Otherwise you will have to
1309 generate this file manually. The form must be as follows::
1297 1310
1298 1311 -----BEGIN CERTIFICATE-----
1299 1312 ... (certificate in base64 PEM encoding) ...
@@ -1302,18 +1315,6 b' The full set of options is:'
1302 1315 ... (certificate in base64 PEM encoding) ...
1303 1316 -----END CERTIFICATE-----
1304 1317
1305 This feature is only supported when using Python 2.6 or later. If you wish
1306 to use it with earlier versions of Python, install the backported
1307 version of the ssl library that is available from
1308 ``http://pypi.python.org``.
1309
1310 You can use OpenSSL's CA certificate file if your platform has one.
1311 On most Linux systems this will be ``/etc/ssl/certs/ca-certificates.crt``.
1312 Otherwise you will have to generate this file manually.
1313
1314 To disable SSL verification temporarily, specify ``--insecure`` from
1315 command line.
1316
1317 1318 ``cache``
1318 1319 Whether to support caching in hgweb. Defaults to True.
1319 1320
General Comments 0
You need to be logged in to leave comments. Login now