当前位置: 代码迷 >> Web前端 >> tomcat https配备
  详细解决方案

tomcat https配备

热度:109   发布时间:2012-09-06 10:37:01.0
tomcat https配置

1、利用keytool工具生成.keystore文件,并且放置tomcat目录

?

?

2、配置server.xml文件

?

<Connector SSLEnabled="true" clientAuth="false" keystoreFile="conf/server.keystore" keystorePass="123456" keystoreType="PKCS12" maxThreads="150" port="443" protocol="HTTP/1.1" scheme="https" secure="true" sslProtocol="TLS" truststoreFile="conf/server.truststore" truststorePass="123456" truststoreType="PKCS12"/>

?

?

?

?

  相关解决方案