我需要在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"/>
答案 0 :(得分:0)
除非您更改了某些配置,否则您的独立jboss容器将从standalone.xml而不是standalone-full.xml读取配置。 “完整”版本就像一个示例文件。