美文网首页工作生活
tomcat ssl证书配置

tomcat ssl证书配置

作者: together_66d6 | 来源:发表于2019-07-05 01:46 被阅读0次

1. jks证书

<Connector

           protocol="org.apache.coyote.http11.Http11NioProtocol"

           port="443" maxThreads="200"

           scheme="https" secure="true" SSLEnabled="true"

           keystoreFile="conf/Tomcat/communication.xxx.com.jks" keystorePass="s2e63n371w4lx"

           clientAuth="false" sslProtocol="TLS"/>

1. pfx证书

<Connector

           protocol="org.apache.coyote.http11.Http11NioProtocol"

           port="443" maxThreads="200"

           scheme="https" secure="true" SSLEnabled="true"

           keystoreFile="conf/Tomcat/2457856_xxx.shizhouhu.com.pfx" keystorePass="4Y2LOv50" keystoreType="PKCS12"

           clientAuth="false" sslProtocol="TLS"/>

相关文章

网友评论

    本文标题:tomcat ssl证书配置

    本文链接:https://www.haomeiwen.com/subject/zndjhctx.html