首页 > Web开发 > 详细

tomcat 配置https

时间:2017-12-19 10:46:38      阅读:250      评论:0      收藏:0      [点我收藏+]

修改tomcat/conf/server.xml

<Connector port="80" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="443"
               URIEncoding="UTF-8" />

    <Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
        maxThreads="150" scheme="https" secure="true"
        keystoreFile="conf/www.xxx.com.jks"
        keystorePass="1234567890"
        clientAuth="false" sslProtocol="TLS" URIEncoding="UTF-8" /> 

 

支持http自动跳转到https:修改tomcat/conf/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>

 

tomcat 配置https

原文:http://www.cnblogs.com/ThinkVenus/p/8063898.html

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