解决方法:
1、打开nginx服务的配置文件nginx.conf, 路径一般是:/usr/local/nginx/conf/nginx.conf。
2、在http{}中加入client_max_body_size 100m,我这里配置的是100M。
http {
client_max_body_size 100m;
include mime.types;
default_type application/octet-stream;
3、重新nginx服务。
假设你的后台为php,php.ini设置如下
vim /phpstudy/server/php/etc/php.ini
post_max_size = 10M
upload_max_filesize = 10M