nginx配置上传文件大小限制
前端上传文件报错:
the server responded with a status of 413(Request Entity Too Large)
解决方法是在 nginx 配置文件中添加 client_max_body_size
配置项,如下:
http{
client_max_body_size 50M;
}
上一篇 :linux umount报错目标忙
版权所有,转载时必须以链接形式注明原始出处