nginx 默认的消息体大小限制是 1M,可以修改这个设置:
在http{}中加入 client_max_body_size 100m;
http{}
client_max_body_size 100m;
http { client_max_body_size 100m; }