Nginx修改传入无效头

enxuqcxy  于 2023-08-03  发布在  Nginx
关注(0)|答案(2)|浏览(129)

我有一个关于nginx配置的问题。我向nginx发送了一个请求,我知道它的头是无效的,我想用nginx修改这个头,使它有效。
请求:

curl -X POST -d "data=string" -H "Host:192.168.99.100" -H "Connection: close" -H "Accept-Encoding: identity" -H "Content-Type: application/x-www-form-urlencoded" -H "Content-Length: 22\r\n" -i http://192.168.99.100/protocol_1.2

字符串
注意Content-Length:22\r\n(CRLF)
然后在error.log中,使用loglevel INFO,我得到

[info] 5#0: *1 client sent invalid "Content-Length" hader while reading client request headers, client: 192.168.99.1, server: example.org,request: "POST /protocol_1.2 HTTP/1.1", host: "192.168.99.100"


不幸的是,我不能修改请求的源代码,所以想在nginx中修改它。有没有一种方法可以让我在传入的头被nginx处理之前修改它们?
我的站点启用非常简单:

server {

    listen 80;
    server_name example.org;
    charset utf-8;

    error_log /var/log/nginx/error.log info;

    ignore_invalid_headers on;

    location /static {
        alias /usr/src/app/static;
    }

    location / {
        proxy_pass http://music:8010;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

}


谢谢你,凯文

qfe3c7zg

qfe3c7zg1#

这个论点:

-H "Content-Length: 22\r\n"

字符串
应该是:

-H "Content-Length: 22"

ohtdti5x

ohtdti5x2#

也许你可以在nginx. conf中尝试'ignore_invalid_headers'。仅供参考

相关问题