-1

我想使用ProxyServlet.Transparent码头代理将请求重定向到另一台服务器。客户端应该使用哪个端口来发送 http 请求,以便它们被 ProxyServlet.Transparent 拦截?

有没有办法设置这个端口?

4

1 回答 1

0

ProxyServlet 只是一个在 Jetty 中运行的简单 servlet。码头监听的端口是在连接器的配置中配置的。

在标准发行版中,您会在 start.ini 中找到端口配置:

jetty.port=8080 jetty.https.port=8443 jetty.spdy.port=8443

根据您使用的连接器,取消注释并更改所需的端口设置。

最好查阅有关此类问题的文档:http: //www.eclipse.org/jetty/documentation/current/configuring-connectors.html#jetty-connectors

于 2013-07-04T07:38:15.700 回答