我在jboss上部署的Web应用程序为7.1.1并且工作正常。现在我想启用ssl到我的jboss服务器。我想使用此
访问我的门户网站为此,我浏览了https://docs.jboss.org/jbossweb/7.0.x/config/ssl.html文档。 我也在standalone.xml文件中做了一些修改。
<subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false">
<configuration>
<static-resources listings="true"/>
</configuration>
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" redirect-port="443"/>
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https">
<ssl name="https" password="pro@123" certificate-key-file="${jboss.server.config.dir}/pro.com.jks"/>
</connector>
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>
我可以访问http://myapplication.com但无法访问https://myapplication.com
我也购买了证书,但现在不知道在哪里配置以http安全模式访问我的门户网站。
当我看到控制台时,这是
08:10:46,202 INFO [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report
JBAS014775: New missing/unsatisfied dependencies:
service jboss.binding.connect (missing) dependents: [service jboss.web.connector.https]
任何人都可以帮助我吗?