跳到主要内容 跳到补充内容

配置 Tomcat 使用代理服务器

步骤

  1. 停止 Tomcat 服务器。
  2. 设置配置。配置文件是 <TomcatPath>/bin/setenv.sh。如果该文件不存在,则创建它。
  3. 添加以下参数,即可更改参数以匹配配置:
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyHost=proxy.server.com # Specify the host name or IP address of your HTTP proxy server. You can use this parameter for http and https host names.
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyPort=YourHttpProxyPort # Specify the port number of your proxy server.
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.nonProxyHosts="localhost|host.mydomain.com|192.168.0.1" # Specify a list of hosts separated by "|" that do not require access through your proxy server.
    例如:
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyHost=proxy.server.com 
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.proxyPort=3128
    CATALINA_OPTS=$CATALINA_OPTS -Dhttp.nonProxyHosts="localhost|host.mydomain.com|192.168.0.1"
    有关代理配置的更多信息,请参阅https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html
  4. 重新启动 Tomcat 服务器。

本页面有帮助吗?

如果您发现此页面或其内容有任何问题 – 打字错误、遗漏步骤或技术错误 – 请告诉我们如何改进!