Tomcat配置强制https端口变成8443的解决办法

Tomcat配置强制https端口变成8443的解决办法

2017年10月18日 10:44:10 我们始终是路人 阅读数:2953 标签: tomcathttps8443443 更多

个人分类: Tomcat

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/a1837634447/article/details/78270292

明确: 
http默认端口 80 
https默认端口 443 
将redirectPort=”8443”改为 
redirectPort=”443”

service.xml

 <Connector port="80" protocol="HTTP/1.1"
               connectionTimeout="20000"
               URIEncoding="UTF-8"
               redirectPort="443" />
  • 1
  • 2
  • 3
  • 4
<Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
               keystoreFile="cert/XXX.pfx"
                keystoreType="PKCS12"
                keystorePass="XXX"
               clientAuth="false" sslProtocol="TLS"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

web.xml 
在welcome-file-list标签后加入

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

猜你喜欢

转载自my.oschina.net/u/3367404/blog/2986971