我正在尝试在我的tomcat中配置https。我浏览了很多博客并生成了密钥库文件,并在server.xml中添加了以下标记。
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
connectionTimeout="20000" maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="../webapps/easwarkey.bin" keystorePass="easwar"/>
我还保留了8081端口的标签。
<Connector port="8081" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
但是当我启动服务器时。我可以看到tomcat @ http://localhost:8081/
的主页请你提一下除此之外还要做些什么。
提前致谢,Easwar