我刚为https-connection配置了wildfly服务器的standalone.xml,一切正常,而我将它作为standalone.sh启动,但是当我想通过ant build.xml启动时,它将不会识别任何https。 因此,build.xml中有一行
<socker server="{jboss.bind.address}" port="8080" />
我相信,无论如何必须配置https连接,而写入port =“8443”而不是帮助,服务器将无法启动。 有什么建议? 在standalone.xml中,它看起来如此:
<server name="default-server">
<http-listener name="default" socket-binding="http" proxy-address-forwarding="true"/>
<https-listener name="https" socket-binding="https" security-realm="UndertowRealm"/>
<host name="default-host" alias="0.0.0.0">
<location name="/" handler="welcome-content"/>
<filter-ref name="server-header"/>
<filter-ref name="x-powered-by-header"/>
<single-sign-on path="/"/>
</host>
</server>