2

我需要在 jboss 7 中配置 2 个 https 端口(5480 和 8443)(我做了这个 jboss 5 添加了一个连接器端口)。我尝试在 Standalone-full.xml 中创建两个 https 连接器端口,但它不起作用。

以下是我当前对 8443 https 端口的配置,我还需要另一个端口 5480。

<subsystem xmlns="urn:jboss:domain:web:1.2" default-virtual-server="default-host" native="false">

<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">

<ssl key-alias="tomcat" password="FOO@Bar-1" certificate-key-file="${jboss.server.config.dir}/keystore" cipher-suite="TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5" protocol="TLS" verify-client="false"/>

        </ connector >

</subsystem>

<socket-binding name="https" port="8443"/>
4

1 回答 1

0

除非您更改了某些配置,否则您的独立 jboss 容器会从standalone.xml 而非standalone-full.xml 中读取配置。“完整”版本就像一个示例文件。

于 2017-06-14T10:52:14.860 回答