docs: faq: how to use a proxy server that requires a username and password - fixes #6565

This commit is contained in:
asdffdsazqqq 2022-11-15 12:58:43 -05:00 committed by GitHub
parent 2c78f56d48
commit 84219b95ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,6 +108,14 @@ possibilities. So, on Linux, you may end up with code similar to
export HTTP_PROXY=$http_proxy export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$http_proxy export HTTPS_PROXY=$http_proxy
Note: If the proxy server requires a username and password, then use
export http_proxy=http://username:password@proxyserver:12345
export https_proxy=$http_proxy
export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$http_proxy
The `NO_PROXY` allows you to disable the proxy for specific hosts. The `NO_PROXY` allows you to disable the proxy for specific hosts.
Hosts must be comma separated, and can contain domains or parts. Hosts must be comma separated, and can contain domains or parts.
For instance "foo.com" also matches "bar.foo.com". For instance "foo.com" also matches "bar.foo.com".