noproxy.d 886 B

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