Internet proxy on premises

0
How can I configure Mendix console on premises to use internet proxy because I face an issue regarding the push notification module as it shows error connection timeout so it seems that it because of internet proxy.
asked
1 answers
0

Your JVM needs to be configured to use the proxy. Choose the "configure" button on your app, and add these under "Other JVM arguments":

For HTTPS:

-Dhttps.proxyHost=https://yourproxy.com
-Dhttps.proxyPort=443

For HTTP:

-Dhttp.proxyHost=http://yourproxy.com
-Dhttp.proxyPort=80

 

answered