nginx 反向代理报400错误与Host关系
作者:互联网
转载自:https://blog.csdn.net/qq_22208737/article/details/80787396
如果后端真是的服务器设置有类似防盗链或者根据http请求头中的host字段来进行路由或判断功能的话
,如果反向代理层的nginx不重写请求头中的host字段,将会导致请求失败,报400错误,
解决办法:
location中设置
proxy_set_header Host $http_host;
将头信息返回服务器
标签:http,host,nginx,Host,头中,400 来源: https://www.cnblogs.com/silentdoer/p/12024684.html