Failed to load resource:the server responded with a status 413 (Request Entity Too Large)
程序员文章站
2022-03-10 09:50:24
...
问题
上传文件时,用localhost访问系统,不会出现这个问题;用域名访问这个系统时出现这个问题,提示是:请求体太大
解决方案
由于nginx反向代理服务器client_max_body_size默认值为1MB,而上传文件大于1MB,所以出现这个错误。在location加入client_max_body_size 50M
location {
client_max_body_size 50M;
}