Closed bwilczek closed 7 months ago
Implement missing feature, marked with this comment in http_connection_options.rb:
http_connection_options.rb
# TODO: Add support for $http_no_proxy or $no_proxy ?
Set env variable no_proxy or NO_PROXY to provide coma-separated list of hosts for which env-provided HTTP_PROXY should not be used.
no_proxy
NO_PROXY
HTTP_PROXY
Domain wildcards are supported. For example: .tld will match any host name ending with .tld.
.tld
Example use:
HTTP_PROXY=http://host:8181 \ HTTPS_PROXY=http://host:8181 \ NO_PROXY=service1,.anything.in.subdomain,service2.internal \ bundle exec ruby my-app-with-em-http-request.rb
Implement missing feature, marked with this comment in
http_connection_options.rb
:Set env variable
no_proxy
orNO_PROXY
to provide coma-separated list of hosts for which env-providedHTTP_PROXY
should not be used.Domain wildcards are supported. For example:
.tld
will match any host name ending with.tld
.Example use: