微信小程序上传文件报错 413
错误如下:
Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)
使用Nginx服务器上传文件时,浏览器报413请求过大
原因:因为服务器限制了文件上传大小,或者说上传文件超过了服务器限制
解决:修改nginx.conf配置文件
将以下代码粘贴到nginx.conf文件中:
client_max_body_size 20M #多少兆 根据自己需求
可以选择在http{ }中设置:client_max_body_size 20m;
也可以选择在server{ }中设置:client_max_body_size 20m;
还可以选择在location{ }中设置:client_max_body_size 20m;
三者有区别:
设置到http{}内,控制全局nginx所有请求报文大小;
设置到server{}内,控制该server的所有请求报文大小;
设置到location{}内,控制满足该路由规则的请求报文大小;
参考:https://www.fujieace.com/web/413-request-entity-too-large.html
posted on
2021-01-07 14:15
求脱单
阅读(336)
评论(0)
编辑
收藏
举报