0

我阅读了很多关于如何配置 tomcat 以使用 ssl 的教程。

我在http://localhost:8080http://localhost:8443中访问我的应用程序,但我无法在https://localhost:8443 中访问。

我使用了 apache HOWTO

文件 key.keystore 可以工作,因为它在 Jboss 的其他应用程序中使用。

Bellow,它是 server.xml 配置中的新连接器。

<Connector 
    port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" 
    acceptCount="100" 
    SSLEnable="true" scheme="https" secure="true" 
    clientAuth="false" sslProtocol="TLS" 
    keystoreFile="C:/ambiente/server/tomcat/Tomcat6.0/conf/key.keystore" keystorePass="xxxx" />

有什么问题?

感谢帮助。

4

1 回答 1

0

尝试使用 SSLEnabled ="true" scheme="https" secure="true"

于 2013-03-03T10:37:21.860 回答