请教问题nginx反向代理proxy_set_headerHost$http_host配置问题
pcmsn 2014-01-25 06:00:52 server
{
listen 80;
server_name 根域名;
location / {
proxy_pass 外连域名 ;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie $http_cookie;
}
}
配置proxy_set_header Host $http_host;这段语句,
提示找不到主机(提示:Bad Request - Invalid Hostname
),删掉就好了。
注:域名是不带www的根域名。
nginx for windows