Tomcat-绑定证书的两种方法

<!--
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150">
<SSLHostConfig>
<Certificate type="RSA" certificateKeystorePassword="2xxxxxxb"
certificateKeystoreType="PKCS12"
certificateKeystoreFile="C:/Program Files/Apache Software Foundation/Tomcat 8.5/cert/xxxxxxxxxxxxx.pfx"/>
</SSLHostConfig>
</Connector>
-->
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
keystoreFile="C:Program FilesApache Software FoundationTomcat 8.5certxxxxxxxxxxxx.jks"
keystorePass="3jxxxxxxxxxxxn0"
clientAuth="false"/>

绑定介绍

https://help.aliyun.com/document_detail/98576.html?spm=5176.2020520163.0.dexternal.576856a7sWJje2

原文地址:https://www.cnblogs.com/-jingzhe/p/13509641.html