简体   繁体   English

WSO2 DAS 3.0.1代理服务器配置

[英]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? 我如何配置WSO2 DAS 3.0.1通过组织中的代理服务器,因为启动时它无法下载Google库?

Cheers, Sean 肖恩干杯

You can pass below properties as JVM options when starting the server to configure the proxy settings. 启动服务器以配置代理设置时,可以将以下属性作为JVM选项传递。

./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. 或者,您可以将这些参数附加到wso2server.sh中的现有JVM选项。

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM