sharesdk

tomcat 配置域名证书

示例:

    <!-- http  -->
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
<!-- https --> <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true" scheme="https" secure="true"> <SSLHostConfig> <Certificate certificateKeystoreFile="conf/cert/server.pfx" certificateKeystorePassword="666666" type="RSA"/> </SSLHostConfig> </Connector>

# conf/cert/server.pfx - 证书路径;tomcat 主目录下
#
certificateKeystorePassword 证书密码

 

分类:

技术点:

相关文章:

  • 2021-04-15
  • 2022-12-23
  • 2021-12-03
  • 2021-07-27
  • 2021-09-14
猜你喜欢
  • 2021-07-28
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2021-04-18
  • 2021-12-10
  • 2021-12-03
相关资源
相似解决方案