Created
March 26, 2014 20:38
-
-
Save snatchev/9792858 to your computer and use it in GitHub Desktop.
Disable Java SOCKS Proxy in OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Java will use the system SOCKS proxy by default, but it will not bypass the hostnames such as *.local, localhost, 0.0.0.0, etc. | |
The Java PrefPane also does not disable the SOCKS proxy even if you choose "Direct Connection". The best way to disable JAVA from connecting over a Proxy is to set the options with no values: | |
JAVA_OPTS="$JAVA_OPTS -DsocksProxyPort -DsocksProxyHost" | |
thanks to: http://mxw.pl/blog/?p=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment