gpt4 book ai didi

Jetty (Eclipse) 监听多个 IP

转载 作者:行者123 更新时间:2023-12-01 04:36:56 25 4
gpt4 key购买 nike

1) Jetty 中的等效配置是什么?监听多个 IP,作为 Apache 中的监听指令?

2)如何为子域配置不同的上下文路径?

最佳答案

问题 1。

假设您正在使用 jetty.xml 进行配置文件,然后你会在那里有一些看起来像这样的东西:

<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="host"><Property name="jetty.host" /></Set>
<Set name="port"><Property name="jetty.port" default="8080"/></Set>
<Set name="maxIdleTime">300000</Set>
<Set name="Acceptors">2</Set>
<Set name="statsOn">false</Set>
<Set name="confidentialPort">8443</Set>
<Set name="lowResourcesConnections">20000</Set>
<Set name="lowResourcesMaxIdleTime">5000</Set>
</New>
</Arg>
</Call>

对于要监听的每个 IP,您都需要一个连接器。
因此,只需根据需要多次复制该部分。
然后为他们每个人更换线
   <Set name="host"><Property name="jetty.host" /></Set>


   <Set name="host">www.xxx.yyy.zzz</Set>

其中 www.xxx.yyy.zzz 是您要收听的 IP。

问题 2。


  • Possible to map subdomains to webapps in a standard Java app server?
  • http://wiki.eclipse.org/Jetty/Howto/Configure_Virtual_Hosts
  • 关于Jetty (Eclipse) 监听多个 IP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4891163/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com