首页 > Web开发 > 详细

Tomcat配置SSL后使用HTTP后跳转到HTTPS

时间:2019-03-08 10:43:18      阅读:208      评论:0      收藏:0      [点我收藏+]

Tomcat配置好SSL后将HTTP请求自动转到HTTPS需要在TOMCAT/conf/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> 
SSL配置参考百度云服务器部署免费的SSL证书(TOMCAT) :https://jingyan.baidu.com/article/73c3ce285aff25e50343d9eb.html

Tomcat配置SSL后使用HTTP后跳转到HTTPS

原文:https://www.cnblogs.com/foxting/p/10494356.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!