Exclude host from proxy in IntelliJ IDEA?

I need to tell IntelliJ NOT to use HTTP proxies for specific hosts that are on our intranet. For some reason, when IntelliJ uses a proxy server, the Weblogic deployment plugin has problems. This is similar to this post . However, I still need a proxy for other plugins / features.

Most things that use a proxy server have some way of excluding hosts. What about IDEA? I rate version 11.

+4
source share
1 answer

Refer to Java Networking and Proxies :

-Dhttp.nonProxyHosts="localhost|host.mydomain.com" 

In IntelliJ IDEA, this parameter can be added to IDEA \ bin \ idea.exe.vmoptions (or IDEA \ bin \ idea64.exe.vmoptions ) on Windows, IDEA / bin / idea.vmoptions (or IDEA / bin / idea64.vmoptions ) on Linux or .plist Information on Mac.

+4
source

Source: https://habr.com/ru/post/1387219/


All Articles