微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ubuntu – 无法从Nginx中删除强制HTTPS重定向?

我最初设置了我的Nginx配置,以自动将HTTP重定向到HTTPS.由于我的工作安全策略和Cloudflare集成,HTTPS无法在我的网络内解析.

我只想删除强制重定向到HTTPS.但在使用URI重写注释掉块之后,服务器仍会自动重定向.

这是我对Nginx认配置

#HTTPS redirect (if necessary)
#server {
#       listen      80;
#       server_name example.com;
#       rewrite     ^   https://$server_name$request_uri? permanent;
#}

server {
        listen 80;
        listen [::]:80 default_server ipv6only=on;
        listen 443 ssl spdy;
        root /var/www/example/current/public;
        index index.PHP index.html index.htm;

        spdy_chunk_size 8k;
        spdy_headers_comp 7;

        server_name example.com;
        # Point to ssl certificates
        ssl_certificate /root/example.com.crt;
        ssl_certificate_key /root/example.com.key;
        # Allow only secure TLS protocols
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        #ssl_prefer_server_ciphers on;
        #ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;

        ssl on;

        # Set the buffer size to 1400 bytes (that way it fits into a single MTU$
        ssl_buffer_size 1400;
#       add_header Strict-Transport-Security max-age=63072000;

        gzip on;
        gzip_min_length 1280;
        gzip_buffers    16 8k;
        gzip_comp_level 4;
        gzip_http_version 1.0;
        gzip_types    text/plain text/html text/css application/javascript appl$
        gzip_vary on;

        location / {
                # First attempt to serve request as file,then
                # as directory,then fall back to displaying a 404.
                try_files $uri $uri/ /index.PHP$is_args$args;
        }

        # pass the PHP scripts to FastCGI server listening on /var/run/PHP5-fpm$
        location ~ \.PHP${
                try_files $uri /index.PHP =404;
                fastcgi_pass unix:/var/run/PHP5-fpm.sock;
                fastcgi_index index.PHP;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_nam$
                include fastcgi_params;
        }

        location ~* \.(css|js|gif|jpe?g|png|woff2?)${
                #gzip on;
                #gzip_vary on;
                expires 168h;
                add_header Pragma public;
                add_header Cache-Control "public,must-revalidate,proxy-revali$
                add_header vary "Accept-Encoding";
        }


        #include /etc/Nginx/global/*;
}

任何帮助将不胜感激!谢谢.

首先,删除ssl;

其次,你有Strict-Transport-Security标题和浏览器记住了2年(正如标题所说的那样).使用max-age = 0添加它以删除效果.

如果您不能这样做(或希望立即生效),请从浏览器中清除HSTS,如this article所说.

原文地址:https://www.jb51.cc/ubuntu/347699.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐