http转成https

Posted 起个名字好难

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http转成https相关的知识,希望对你有一定的参考价值。

 

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


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




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


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


如果你存在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的主要内容,如果未能解决你的问题,请参考以下文章

tomcat从 http转成https,并且去掉端口号

这两个代码片段有啥区别?

apache http添加证书转成https

https怎么强制转成http

java中怎么将http协议转成https协议

tomcat配置https,单方验证,并自动将http请求转成https