• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

解决nginx报错信息 client intended to send too large body: 1331696 bytes

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

解决nginx报错信息 client intended to send too large body: 1331696 bytes

1,nginx后台error日志报错

2016/02/05 16:23:56 [error] 12024#0: *441106971 connect() failed (111: Connection refused) while
 connecting to upstream, client: 113.214.1.10, server: localhost, request: 
"GET /h5teb/ugcH5/index.htm?source=android&mall=8&TGC=911FDD2F99B84D528F0A7EE71780A943
 HTTP/1.1", upstream: "http://113.214.1.23:8000/h5teb
/ugcH5/index.htm?source=android&mall=8&TGC=911FDD2F99B84D528F0A7EE71780A943",
 host: "www.testcrm.com"
2016/02/05 16:48:14 [error] 
12013#0: *441119082 client intended to send too 
large body: 1331696 bytes, client: 113.214.1.10, server: localhost, 
request: "POST /h5teb/complaints/save.htm HTTP/1.1", host: "www.testcrm.com",
 referrer: "http://www.testcrm.com/h5teb/complaints/index.htm"

2,web工程中添加对文件上传的限制

web工程部署了一个单独的nginx,在http{后面添加限制100m的上限

client_max_body_size 100m;
[nginx@wgq_idc_web_1_21 logs]$ vim /usr/local/nginx/conf/nginx.conf
http {
  include    mime.types;

  server_tokens off;

  sendfile    on;
  tcp_nopush on;
  tcp_nodelay on;

  keepalive_timeout 65;

  log_format main '$proxy_add_x_forwarded_for $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for" '
           'upstream: $upstream_addr';
  access_log off;

    client_max_body_size 100m;

3,静态资源中添加对文件上传的限制

静态资源部署了一个单独的nginx,在转发location中进行配置100m的上限,client_max_body_size 100m;:

[fastdfs@wgq_test_crm~]$ vim /usr/local/nginx/conf/nginx.conf
    location /group1/M00 {
      root  /data/fastdfs/data;
      include gzip.conf;
      ngx_fastdfs_module;
      client_max_body_size 100m;
      expires 12h;
    }

    location /group2/M00 {
      root  /data/fastdfs_group2/data;
      ngx_fastdfs_module;
      client_max_body_size 100m;
      #access_log /usr/local/nginx/logs/group2_pic.log main;
      expires 12h;
      include gzip.conf;
    }

4,然后重新加载2组nginx服务器,问题解决了,不会再报错了。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
CentOS下编译安装nginx及配置缩略图插件的方法教程发布时间:2022-02-12
下一篇:
nginx动态添加访问白名单的方法发布时间:2022-02-12
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap