tomcat 配置https

Posted ThinkVenus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>

 

以上是关于tomcat 配置https的主要内容,如果未能解决你的问题,请参考以下文章

Tomcat9配置https链接

tomcat9配置https

Tomcat配置和数据源配置

tomcat7+jdk的keytool生成证书 配置https

tomcat 配置https

阿里云上,Ubuntu下配置Nginx,在tomcat中加了https协议就不可以了