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

发布时间:2022-04-24 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了解决nginx报错信息 client intended to send too large body: 1331696 bytes脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

解决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服务器,问题解决了,不会再报错了。

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

脚本宝典总结

以上是脚本宝典为你收集整理的解决nginx报错信息 client intended to send too large body: 1331696 bytes全部内容,希望文章能够帮你解决解决nginx报错信息 client intended to send too large body: 1331696 bytes所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。