So I have a fairly loaded env variable for _JAVA_OPTIONS
export _JAVA_OPTIONS=\"-Dhttp.proxyHost=my-proxy.com -Dhttp.proxyPort=1080
-Dhttps.proxy
This answer is for the main question, and for whatever reason I originally thought this was ColdFusion specific.
It is rarely documented, but there is an https non proxy host argument you can use:
-Dhttps.nonProxyHosts=
A lot of documentation states that -Dhttp.nonProxyHosts
will cover both. For example, that is the case in Coldfusion. In other cases, say Weblogic, you have to have both arguments, both the http and https versions.
For ColdFusion, he reason it doesn't work is that ColdFusion is adding quotes to the -Dhttp.nonProxyHosts
argument:
-Dhttp.nonProxyHosts="my-server"
If you don't use quotes you should be good:
-Dhttp.nonProxyHosts=my-server