We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 177dd90 + da24695 commit 7104ad4Copy full SHA for 7104ad4
docs/user/advanced.rst
@@ -656,10 +656,10 @@ certificates trusted by Requests can be found with::
656
from requests.utils import DEFAULT_CA_BUNDLE_PATH
657
print(DEFAULT_CA_BUNDLE_PATH)
658
659
-You override this default certificate bundle by setting the standard
660
-``curl_ca_bundle`` environment variable to another file path::
+You override this default certificate bundle by setting the ``REQUESTS_CA_BUNDLE``
+(or ``CURL_CA_BUNDLE``) environment variable to another file path::
661
662
- $ export curl_ca_bundle="/usr/local/myproxy_info/cacert.pem"
+ $ export REQUESTS_CA_BUNDLE="/usr/local/myproxy_info/cacert.pem"
663
$ export https_proxy="http://10.10.1.10:1080"
664
665
$ python
0 commit comments