我正在尝试为JBoss 7安装添加SSL支持。我按照JBoss AS 7.1 SSL Setup Guide
上的纯java解决方案的说明进行操作这是我的standalone.xml子系统配置
<subsystem xmlns="urn:jboss:domain:web:1.1" native="false" default-virtual-server="default-host">
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" redirect-port="443" />
<virtual-server name="default-host" enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
<connector name="https" scheme="https" protocol="HTTP/1.1" socket-binding="https" enable-lookups="false" secure="true">
<ssl name="ps-ssl" password="mypw" protocol="TLSv1" key-alias="ps" certificate-key-file="../standalone/configuration/ps.keystore" />
</connector>
</subsystem>
当我启动应用程序时,我收到firefox问题加载页面消息。我已将web.xml配置为要求整个应用程序使用https。我删除约束时应用程序工作正常,所以我想我在设置ssl时遗漏了一些东西。有没有人看到我错过的任何东西?