Avoid nginx 411 Content-Length required errors

http://www.l99.com/1548156/blog/view/283241

3.添加chunkin-nginx-module模块

nginx报 411 错误,需要安装此模块

192.168.60.100 - - [11/May/2011:09:45:53 +0800] "PUT /ehcache/rest/cs/1 HTTP/1.1" 411 181 "-" "curl/7.21.3 (i686-pc-linux-gnu) libcurl/7.21.3 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18"

 

添加方法

从此处下载最新安装文件

http://github.com/agentzh/chunkin-nginx-module/downloads


编译的时候加入这个模块 

 ./configure  --user=nginx --group=nginx --add-module=../ngx_cache_purge-1.2 --prefix=/usr/local/nginx --with-http_sub_module --with-http_ssl_module --with-http_realip_module --with-debug --with-http_stub_status_module --add-module=/usr/local/src/agentzh-chunkin-nginx-module-847b3de/

make -j2
make install
在配置文件中 打开 这个功能 
        server {
                chunkin on;

                error_page 411 = @my_411_error;
                location @my_411_error {
                chunkin_resume;
                }

                listen 8080;
                location / {
                        proxy_set_header Host $host;
                        proxy_set_header X-Forwarded-For $remote_addr;
                        proxy_pass http://backend;
                }

           }
参考 :  http://wiki.nginx.org/HttpChunkinModule


你可能感兴趣的:(Avoid nginx 411 Content-Length required errors)