Proxy Exclusion on Linux

What I already knew, was that the environment variable proxy_http and proxy_https lets you set a proxy server on Linux.

This redirects all connections to the specified hosts. But sometimes, you don’t want this, e.g. when accessing internal resources. So you can configure a variable named no_proxy to exclude those:

export no_proxy="internal.stuff"