mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
Document the curl_ca_bundle environment variable
This commit is contained in:
parent
a2e379a595
commit
9504a6dddf
2 changed files with 3 additions and 1 deletions
|
|
@ -334,6 +334,8 @@ under Windows systems. On a Mac use
|
|||
the Internet Config to select a proxy.
|
||||
You can also set a comma-separated domain list in the :envvar:`no_proxy`
|
||||
environment variables to ignore any proxy settings for these domains.
|
||||
The :envvar:`curl_ca_bundle` environment variable can be used to identify an
|
||||
alternative certificate bundle to be used with an HTTPS proxy.
|
||||
|
||||
Setting a HTTP proxy on Unix for example looks like this:
|
||||
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ def print_env_info(key, out=stderr):
|
|||
|
||||
def print_proxy_info(out=stderr):
|
||||
"""Print proxy info."""
|
||||
for key in ("http_proxy", "https_proxy", "no_proxy"):
|
||||
for key in ("http_proxy", "https_proxy", "curl_ca_bundle", "no_proxy"):
|
||||
print_env_info(key, out=out)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue