Search code examples
wso2wso2-das

WSO2 DAS 3.0.1 proxy server configuration


How can I configure the WSO2 DAS 3.0.1 to get through Proxy server in organization because it cannot download Google library when starting?

Cheers, Sean


Solution

  • You can pass below properties as JVM options when starting the server to configure the proxy settings.

    ./wso2server.sh -Dhttp.proxyHost=10.100.1.100 -Dhttp.proxyPort=8088 -Dhttp.nonProxyHosts="localhost|127.0.0.1"
    

    Alternatively you can append those parameters to the existing JVM options in the wso2server.sh.

    -Dhttp.proxyHost=10.100.1.100 \
    -Dhttp.proxyPort=8088 \
    -Dhttp.nonProxyHosts="localhost|127.0.0.1" \