首页 > Web开发 > 详细

设置tomcat访问http时自动跳转到https

时间:2020-01-06 22:36:49      阅读:424      评论:0      收藏:0      [点我收藏+]

tomcat8
conf/server.xml
中原属于80端口的http修改为(tomcat默认是8080端口)

    <Connector port="80" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="443" />
之后在conf/web.xml的最下面</web-app>前加上

    <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即可

设置tomcat访问http时自动跳转到https

原文:https://www.cnblogs.com/qianzf/p/12158392.html

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