always show this error,and i modify the nginx conf.i use varnish 3.0.1,but the same varnish conf in 2.1.5 all is ok~

Error 413 Request Entity Too Large

Request Entity Too Large

Guru Meditation:

XID: 1978350183

=========================================
my nginx.conf


user  www www;

worker_processes 16;

error_log  /var/log/nginx/error.log  crit;

pid        /usr/local/nginx/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;

events
{
  use epoll;
  worker_connections 65535;
}

http
{
  include       mime.types;
  default_type  application/octet-stream;

  #charset  gb2312;

  #server_names_hash_bucket_size 128;
  #client_header_buffer_size 128k;
  large_client_header_buffers 4 4k;
  client_max_body_size 20m;

  sendfile on;
  tcp_nopush     on;

  keepalive_timeout 60;

  tcp_nodelay on;

  fastcgi_connect_timeout 300;
  fastcgi_send_timeout 300;
  fastcgi_read_timeout 300;
  fastcgi_buffer_size 64k;
  fastcgi_buffers 4 64k;
  fastcgi_busy_buffers_size 128k;
  fastcgi_temp_file_write_size 128k;

  gzip on;
  gzip_min_length  1k;
  gzip_buffers     4 16k;
  gzip_http_version 1.0;
  gzip_comp_level 2;
  gzip_types       text/plain application/x-javascript text/css application/xml;
  gzip_vary on;

  proxy_ignore_client_abort off;
  proxy_set_header          X-Forwarded-For $remote_addr;
  #proxy_connect_timeout      90;
  #proxy_send_timeout         90;
  #proxy_read_timeout         90;

  #proxy_buffer_size          4k;
  #proxy_buffers              4 32k;
  #proxy_busy_buffers_size    64k;
  #proxy_temp_file_write_size 64k;
  #limit_zone  crawler  $binary_remote_addr  10m;

  #############################
  include website/*.conf;
  #############################

}