nginx将每个http请求重定向到https

时间:2013-10-23 18:46:34

标签: http redirect ssl https nginx

最后我切换到了nginx网络服务器。但每次我访问http://mywebsite.com时,它都会将我重定向到https://mywebsite.com。我的服务器块(vhost)中没有任何ssl选项。这是一个精简版(仅删除了帮助评论):

server {
        listen 80;
        root /usr/share/nginx/www/mywebsite/htdocs;
        index index.php index.html index.htm;
        server_name mywebsite.com;

        location / {
                try_files $uri $uri/ /index.html;
        }
        location ~ \.php$ {
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param CONTEXT Staging;
                include fastcgi_params;
        }
}

我真的不知道我是否在正确的位置搜索错误?!

PS:PHP返回["SERVER_PROTOCOL"]=> string(8) "HTTP/1.1"

感谢您的建议!

1 个答案:

答案 0 :(得分:0)

知道了!我在/etc/nginx/fastcgi_params找到了我评论过的fastcgi_param HTTPS $https;行。现在,它工作正常。希望能帮助别人。