问题描述
- centOS服务器配置https环境,容器是tomcat。求教配置过程。谢谢!
- 公司的centOS服务器需要配置https加密,容器是tomcat。证书是公司购买的,如何配置,求教。谢谢!
解决方案
这个比较简单,修改tomcat下的conf/server.xml,指定证书路径为证书存放目录即可
如:
maxThreads=""150"" scheme=""https"" secure=""true""
clientAuth=""false"" sslProtocol=""TLS""
keystoreFile=""/tomcat.keystore"" keystorePass=""xxxxxx""
truststoreFile=""/tomcat.keystore"" truststorePass=""xxxxxx"" />
时间: 2024-12-11 07:10:48