Nginx出现The plain HTTP request was sent to HTTPS port问题解决方法

一般在 vhost 配置中会有php解析的一段,如:

location ~ .*.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_index index.php;
include fcgi.conf;
}

解释:

很多人认为使用 fastcgi_param HTTPS on;

这样是没错,不过强迫使用这个参数,不太有效!

最好的答案就是 fastcgi_param HTTPS $https if_not_empty; (参考下面 nginx 官方的链接),有 https 协议时才自动使用 https on,否则忽略 fastcgi_param HTTPS 这个参数。

内嵌的变量:

$https – 如果链接是 SSL 就返回 “ON”,否则返回空字符串

if_not_empty; – 当参数有值时才传递到服务器

注意:这个方法只适合 Nginx 1.1.11 之后的版本

参考:
http://stackoverflow.com/questions/4848438/fastcgi-application-behind-nginx-is-unable-to-detect-that-https-secure-connectio

http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_param

http://nginx.org/en/docs/http/ngx_http_core_module.html#variables

© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发

请登录后发表评论