noproxy.d 768 B

1234567891011121314151617
  1. Long: noproxy
  2. Arg: <no-proxy-list>
  3. Help: List of hosts which do not use proxy
  4. Added: 7.19.4
  5. Category: proxy
  6. Example: --noproxy "www.example" $URL
  7. ---
  8. Comma-separated list of hosts for which not to use a proxy, if one is
  9. specified. The only wildcard is a single * character, which matches all hosts,
  10. and effectively disables the proxy. Each name in this list is matched as
  11. either a domain which contains the hostname, or the hostname itself. For
  12. example, local.com would match local.com, local.com:80, and www.local.com, but
  13. not www.notlocal.com.
  14. Since 7.53.0, This option overrides the environment variables that disable the
  15. proxy ('no_proxy' and 'NO_PROXY'). If there's an environment variable
  16. disabling a proxy, you can set the noproxy list to \&"" to override it.