Name
easy:SetOpt_NoProxy -- disable proxy use for specific hosts
Synopsis
easy:SetOpt_NoProxy(noproxy)
Function
Pass a string. The string consists of a comma separated list of host names that do not require a proxy to get reached, even if one is specified. The only wildcard available is a single * character, which matches all hosts, and effectively disables the proxy. Each name in this list is matched as either a domain which contains the hostname, or the hostname itself. For example, example.com would match example.com, example.com:80, and www.example.com, but not www.notanexample.com or example.com.othertld.

If the name in the noproxy list has a leading period, it is a domain match against the provided host name. This way ".example.com" will switch off proxy use for both "www.example.com" as well as for "foo.example.com".

Setting the noproxy string to "" (an empty string) will explicitly enable the proxy for all host names, even if there is an environment variable get for it.

Enter IPv6 numerical addresses in the list of host names without enclosing brackets:

 
"example.com,::1,localhost"

Inputs
noproxy
input value

Show TOC