3

我在使用 nginx proxy_pass 和 PUT 时遇到问题,但没有 Content-Length 标头返回 411 错误。

我跑来测试这个:

# curl -XPUT http://localhost:8080/
<html>
<head><title>411 Length Required</title></head>
<body bgcolor="white">
<center><h1>411 Length Required</h1></center>
<hr><center>nginx/1.1.19</center>
</body>
</html>
# touch temp
# curl -X PUT http://localhost:8080/ -T temp
{"response": "ok"}

相关配置:

# Proxy to Backend Server
server {
    listen localhost:8080;

    location / {
        proxy_set_header Host $http_host;
        proxy_set_header X-Forwarded-Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://backend_server;
    }
}

我发现这个帖子似乎是同样的问题:

http://forum.nginx.org/read.php?2,72279,72279#msg-72279

有没有办法让 nginx 在没有 Content-Length 标头的情况下代理 PUT 请求?

新版本的 nginx 不会受到此错误/限制的影响吗?

4

1 回答 1

1

升级到nginx >= 1.4.11.3.9或者1.4.0就足够了,但是有安全问题 thx @elhefe - 请参阅评论)或安装NginxHttpChunkinModule ,如此所述。有Debian 和 RedHat 系列的官方软件包

德比安

  • 喘不过气的反向移植(当前为 1.4.4-1)

    添加到/etc/apt/sources.list

    deb http://ftp.debian.org/debian/ wheezy-backports main
    

    运行并安装您选择的 nginx 版本 ( nginx-full, nginx-light, nginx-naxsi)

    apt-get update
    apt-get -t wheezy-backports install nginx-full
    
  • nginx.org 包(目前稳定版为1.4.4):

    wget http://nginx.org/keys/nginx_signing.key
    apt-key add nginx_signing.key
    

    添加到/etc/apt/sources.list

    deb http://nginx.org/packages/debian/ wheezy nginx
    deb-src http://nginx.org/packages/debian/ wheezy nginx
    

    删除当前的 nginx 包:

    apt-get remove nginx-full nginx-common
    

    更新包列表:

    apt-get update
    apt-get install nginx
    

    对于类似 Debian 的行为更改更新/etc/nginx/nginx.conf

    user  www-data;
    

    http并在部分末尾添加

    include /etc/nginx/sites-enabled/*;
    
于 2013-12-14T12:02:41.530 回答