美文网首页
Nginx.http强制跳转https

Nginx.http强制跳转https

作者: Rainy丶Wang | 来源:发表于2019-03-12 09:48 被阅读0次

    在server中添加

    rewrite ^(.*)$  https://$host$1 permanent;
    

    具体案例实现

            server{
                    listen    80;
                    server_name ***.chumenwai.cn;
                    #rewrite ^(.*)$  https://$host$1 permanent;
                    location / {
                            proxy_pass http://tomcat_cmzwht;
                            proxy_store off;
                            proxy_redirect off;
                            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                            proxy_set_header X-Real-IP $remote_addr;
                            proxy_set_header Host $http_host;
                            client_max_body_size  100m;
                    }
            }
    

    重启Nginx就可以了

    相关文章

      网友评论

          本文标题:Nginx.http强制跳转https

          本文链接:https://www.haomeiwen.com/subject/ylxgpqtx.html