码迷,mamicode.com
首页 > Web开发 > 详细

Nginx 在POST提交数据时,报 HTTP411 Content-Length required

时间:2015-01-26 12:07:54      阅读:1118      评论:0      收藏:0      [点我收藏+]

标签:

#下载chunkin模块
git clone https://github.com/agentzh/chunkin-nginx-module.git
#编译nginx,使用chunkin模块
wget http://nginx.org/download/nginx-1.2.7.tar.gz
tar xvzf nginx-1.2.7.tar.gz
cd nginx-1.2.7
./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_gzip_static_module --with-google_perftools_module --with-http_realip_module --add-module=../chunkin-nginx-module 
make -j8
make install

然后在nginx.conf中添加

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

之后重启nginx就可以了。

Nginx 在POST提交数据时,报 HTTP411 Content-Length required

标签:

原文地址:http://my.oschina.net/jerryhu/blog/371727

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!