zoukankan      html  css  js  c++  java
  • tomcat 配置https

    修改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>
  • 相关阅读:
    python023
    python019
    python018
    python017
    python016
    python013
    python012
    数据库,盘它!!!!
    网络编程
    面向对象简述
  • 原文地址:https://www.cnblogs.com/ThinkVenus/p/8063898.html
Copyright © 2011-2022 走看看