欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Failed to load resource:the server responded with a status 413 (Request Entity Too Large)

程序员文章站 2022-03-10 09:50:24
...

问题
Failed to load resource:the server responded with a status 413 (Request Entity Too Large)
上传文件时,用localhost访问系统,不会出现这个问题;用域名访问这个系统时出现这个问题,提示是:请求体太大

解决方案
由于nginx反向代理服务器client_max_body_size默认值为1MB,而上传文件大于1MB,所以出现这个错误。在location加入client_max_body_size 50M

location {
   client_max_body_size 50M;
}
相关标签: 其他 其他