1、查询服务器上nginx:ps -ef|grep nginx
2、查询服务器上nginx的nginx.conf文件地址:1命令执行完后/xxx/xxx/nginx -t
3、切换到对应目录vi编辑nginx.conf文件
4、http{}中client_max_body_sizec参数设置为client_max_body_size 10m; 该参数主要是:设置允许客户端请求的最大的单个文件字节数,默认值为1m 。值为0标识无限制
5、重启nginx:systemctl restart nginx
6、查看nginx状态:systemctl status nginx
7、设置nginx开机自启:systemctl enable nginx