Proxy Environment Variables are Case-Sensitive #182
Labels
bug
Something isn't working
needs testing (on unstable)
A feature that now exists, but is looking for people to test and use it
When RSSH tries to auto-detect proxy config from the environment variables, it looks for
os.Getenv("http_proxy")
. This is a case-sensitive operation.This means if the environment variable is instead uppercase
HTTP_PROXY
, it will not detect it.I would suggest 2 potential fixes:
http_proxy
andHTTP_PROXY
, or;http_proxy
.The text was updated successfully, but these errors were encountered: