Repository: libcloud Updated Branches: refs/heads/trunk 5e61649d3 -> 99b63ab65
Add some more docs on certifi stuff. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/99b63ab6 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/99b63ab6 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/99b63ab6 Branch: refs/heads/trunk Commit: 99b63ab655116198485479ce1496a6e0bc91c914 Parents: 5e61649 Author: Tomaz Muraus <[email protected]> Authored: Fri Jun 17 20:06:11 2016 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Fri Jun 17 20:06:11 2016 +0200 ---------------------------------------------------------------------- docs/other/ssl-certificate-validation.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/99b63ab6/docs/other/ssl-certificate-validation.rst ---------------------------------------------------------------------- diff --git a/docs/other/ssl-certificate-validation.rst b/docs/other/ssl-certificate-validation.rst index 60f5b20..04b2a92 100644 --- a/docs/other/ssl-certificate-validation.rst +++ b/docs/other/ssl-certificate-validation.rst @@ -21,6 +21,20 @@ similar to the one below: ``No CA Certificates were found in CA_CERTS_PATH.`` +The easiest way to resolve this issue is to install `certifi` Python package +from PyPi using pip. This package provides curated collection of Root +Certificates based on the Mozilla CA bundle. If this package is installed +and available, Libcloud will use CA bundle which is bundled by default. + +As the list of trusted CA certificates can and does change, you are also +encouraged to periodically update this package (``pip install --upgrade +certifi`` or similar). + +If for some reason you want to avoid this behavior, you can set +``LIBCLOUD_SSL_USE_CERTIFI`` environment variable to ``false``. Or even, +better provide a direct path to the CA bundle you want to use using +``SSL_CERT_FILE`` environment variable as shown below. + Windows Users -------------
