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

http转成https

时间:2017-01-19 21:24:28      阅读:432      评论:0      收藏:0      [点我收藏+]

标签:auth   eal   云服务   user   res   下载   cer   client   blog   

 

 1.在阿里云服务器上购买一个AC证书,将证书下载下来


2.解压放在技术分享tomcat目录下,cert文件夹是我自己建的

技术分享


3.修改tomcat的配置文件技术分享上面那个原来是被注掉的放开 
技术分享

把端口改为443,https请求的是的4443端口


如果你存在http://请求想让他转化为https://请求在web.xml文件后面加上技术分享

技术分享

 



<login-config>  
 
<auth-method>CLIENT-CERT</auth-method>  
<realm-name>Client Cert Users-only Area</realm-name>  
</login-config>  
<security-constraint>  
<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> 

 



就好了 

 

http转成https

标签:auth   eal   云服务   user   res   下载   cer   client   blog   

原文地址:http://www.cnblogs.com/shihaiming/p/6308677.html

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