码迷,mamicode.com
首页 > Web开发 > 详细

tomcat8安装https证书

时间:2018-08-04 14:33:42      阅读:773      评论:0      收藏:0      [点我收藏+]

标签:rect   convert   login   htm   source   author   key   nec   tee   

1.进入网址https://myssl.com/cert_convert.html 将证书转成jks格式,并放到tomcat conf根目录下

2.打开tomcat server.xml 配置

  将如下配置放开注释,并改成如下:

  <Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true"> 
        <SSLHostConfig> 
            <Certificate certificateKeystoreFile="conf\你的jks证书文件"  certificateKeystorePassword="证书密码" type="RSA" /> 
       </SSLHostConfig>
     </Connector>

  注意将端口改为443,https默认端口443

3.目的是将 http 自动转换为 https

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" />

4.打开web.xml配置

<login-config>
<!-- Authorization setting for SSL -->
<auth-method>CLIENT-CERT</auth-method>
<realm-name>Client Cert Users-only Area</realm-name>
</login-config>
<security-constraint>
<!-- Authorization setting for SSL -->
<web-resource-collection >
<web-resource-name >SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

将这些配置放在最后面,最后重启tomcat即可

 

tomcat8安装https证书

标签:rect   convert   login   htm   source   author   key   nec   tee   

原文地址:https://www.cnblogs.com/liyingchun/p/9418457.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!