报错信息:

原因:

因为nginx还限制了请求体大小,需要在nginx的虚拟机配置文件中添加:

1
client_max_body_size 50m;

之后重启nginx

1
systemctl restart nginx