nginx反向代理报错400

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx反向代理报错400相关的知识,希望对你有一定的参考价值。

当用nginx做负载均衡的时候,nginx的配置文件如下:

    upstream server_pools {
         server 10.0.0.7:80  weight=1;
         server 10.0.0.8:80  weight=1;

当客户端访问时出现报错如下:

[[email protected] ~]# curl  www.hahaetiantian.org
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>400 Bad Request</title>
</head><body>
<h1>Bad Request</h1>
<p>Your browser sent a request that this server could not understand.<br />
</p>
<p>Additionally, a 400 Bad Request
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
[[email protected] ~]# curl  www.hahaetiantian.org
www

查看日志报错并不能找到原因,但是根据400报错以及对http协议的原理了解得知是因为请求头的原因,最后在网上找到解决办法,原因是因为upstream后面的名称有下划线使得代理无法识别,修改如下:

    upstream server-pools {
         server 10.0.0.7:80  weight=1;
         server 10.0.0.8:80  weight=1;

然后再次访问结果如下:

[[email protected] ~]# curl  www.etiantian.org
apache www
[[email protected] ~]# curl  www.etiantian.org
www

以上是关于nginx反向代理报错400的主要内容,如果未能解决你的问题,请参考以下文章

Nginx反向代理400错误

Nginx反向代理400错误

使用SSL配置nginx反向代理时出现400错误请求错误。

nginx配置反向代理或跳转出现400问题处理记录

Nginx 反向代理后,出现400的response_code

nginx反向代理时,url中包含转义字符导致400 bad request问题