这里是文章模块栏目内容页
Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)

1、错误描述 

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


2、错误原因


  上传文件时,利用localhost访问系统,不会出现这个问题;用域名访问这个系统时,出现这个问题,提示是:请求实体太大

1

由于Nginx反向代理服务器client_max_body_size默认值为1MB,而上传文件大于1MB,所以就出现这个错误


3、解决办法


 打开Nginx反向代理服务器nginx.conf配置文件,修改client_max_body_size值


 client_max_body_size   8M

 这里的终极办法是设置为 0,因为我们无法预料实际使用中会上传多大的文件。例如一个文件存储的服务。


4、存放位置 

可以选择在http{ }中设置:client_max_body_size 20m;


也可以选择在server{ }中设置:client_max_body_size 20m;


还可以选择在location{ }中设置:client_max_body_size 20m;


三者到区别是:http{} 中控制着所有nginx收到的请求。

而报文大小限制设置在server{}中,则控制该server收到的请求报文大小,

同理,如果配置在location中,则报文大小限制,只对匹配了location 路由规则的请求生效。