nginx默认有个上传文件大小的参数设置,默认上传大小是1M,超过大小,连接直接断开。此参数正是
client_max_body_size
。OK,解决办法很简单:
直接修改配置文件呗:
$ sudo vim /etc/nginx/nginx.conf 在http里面添加如下配置即可:
http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off; # server_names_hash_bucket_size 64; # server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; client_max_body_size 5m; #....此处省略xx字.... }
单位为兆,根据你自己的需求修改就是。