在jboss 7中配置SSL

时间:2014-03-02 18:16:50

标签: ruby-on-rails ssl configuration https jboss

我正在尝试将我的网络界面从http切换到https,以便我的ruby on rails web app。我做了以下 1.在本地生成证书签名请求 2.获取密钥库文件
3.从CA获得SSL证书 4.将此证书导入到步骤2中获取的密钥库中。
5.配置轨道以使用SSL
6.按以下方式在jboss中配置新的https连接器

<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true"
    <ssl name="https" key-alias="myalias" password="foobar" certificate-key-   file="/tmp/keystore"/
</connector  
  1. 将https端口更改为端口80。
  2. 但是当我加载应用程序时,我无法查看Web应用程序。 注意:jboss日志中没有错误

1 个答案:

答案 0 :(得分:0)

您如何访问您的应用程序?我的意思是网址模式? 如果http和https连接具有相同的端口,则会发生冲突。 在standalone.xml文件的部分中验证它。尝试将https端口更改为8443或443,因为您可能已为HTTP连接分配端口80。