Nginx出现The plain HTTP request was sent to HTTPS port问题解决方法
时间:2022-03-22 10:36:07|栏目:Nginx|点击: 次
今天在配置Nginx+SSL的时候出现如题的错误,后来与度娘一番云雨之后找到一个解决方法,挺有用,随手转之。
一般在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 ?C 如果链接是 SSL 就返回 “ON”,否则返回空字符串。
if_not_empty; ?C 当参数有值时才传递到服务器
注意:这个方法只适合 Nginx 1.1.11 之后的版本
上一篇:rashost的windows VPS重装系统的方法
栏 目:Nginx
本文标题:Nginx出现The plain HTTP request was sent to HTTPS port问题解决方法
本文地址:http://www.codeinn.net/misctech/196872.html