-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support NO_PROXY
environment variable
#413
Comments
@poconnor-lab49 I think we may need to agree on |
I read the exact same article! Very informative. My gut says to follow the principle of least surprise and do roughly what curl does. I'd target the lowest common denominator from that article and not bother with CIDR block matching. |
The lack of |
Hello everyone, Thank you very much for this submission and showcasing your interest in this feature. I will provide all updates about this feature here. Best regards, Yasmine |
Thank you and great timing! See curl/curl#11962 |
Hello everyone, aws-c-http and aws-c-s3 support disabling reading of env variables via a parameter, which is helpful for disabling the reading of env variables instead of unsetting them. The Java SDK v2 has a PR that exposes this setting for CRTS3Client. Sharing this as it may be useful for some use cases. |
There does not appear to be a way to add a list of hosts which should not be proxied if
HTTP_PROXY
orHTTPS_PROXY
are set.The current workaround is to unset
HTTP_PROXY
whenever I want to run against localhost, but this obviously won't work if I need to reach a mix of resources which should and should not be be proxied.Please add support for
NO_PROXY
andno_proxy
to match theHTTP_PROXY
env variable support.The text was updated successfully, but these errors were encountered: