Tomcat配置8080强制跳转https端口变成8443或者80跳转443

Tomcat配置强制https端口变成8443

跳转端口:
http默认端口 8080
https默认端口 8443

或者

http默认端口 80
https默认端口 443
这里只讲tomcat配置,至于证书生成请参考其他文档;
修改tomcat配置文件 vim /etc/tomcat/server.xml 启用ssl

service.xml
    

    

强制跳转:
访问http的8080或者80自动跳转
修改 web.xml

在welcome-file-list标签后加入
  
          
        CLIENT-CERT  
        Client Cert Users-only Area  
      
      
          
          
            SSL  
            /*  
          
          
            CONFIDENTIAL  
          
     


注意: 如果是YUM安装的tomcat无法使用1024以下的端口固无法使用80与443 ;
若修改监听端口为80休要修改tomcat运行用户为root;安全起见官方不建议这么干;
修改下面的tomcat用户为root
vim /usr/lib/systemd/system/tomcat.service

# Systemd unit file for default tomcat
# 
# To create clones of this service:
# DO NOTHING, use [email protected] instead.

[Unit]
Description=Apache Tomcat Web Application Container
After=syslog.target network.target

[Service]
Type=simple
EnvironmentFile=/etc/tomcat/tomcat.conf
Environment="NAME="
EnvironmentFile=-/etc/sysconfig/tomcat
ExecStart=/usr/libexec/tomcat/server start
SuccessExitStatus=143
# User=Tomcat
User=root

[Install]
WantedBy=multi-user.target

你可能感兴趣的:(Tomcat配置8080强制跳转https端口变成8443或者80跳转443)