系统相关
首页 > 系统相关> > nginx 反向代理报400错误与Host关系

nginx 反向代理报400错误与Host关系

作者:互联网

 

如果后端真是的服务器设置有类似防盗链或者根据http请求头中的host字段来进行路由或判断功能的话
,如果反向代理层的nginx不重写请求头中的host字段,将会导致请求失败,报400错误,
解决办法:

location中设置

proxy_set_header Host $http_host;

[root@nignx ~]#vim /usr/local/nginx/conf/nginx.conf

server {
     listen 80;
     server_name localhost;
    charset utf-8;
    access_log logs/host.access.log main;

location / {
    root html;
    index index.html index.htm;
    proxy_set_header Host $http_host;          //此处要添加host头
}

 

将头信息返回服务器

标签:index,http,host,nginx,Host,头中,400
来源: https://www.cnblogs.com/cxm123123form/p/11582558.html