跳到主内容

nginx 413 Request Entity Too Large解决方案

· 1分钟阅读

原因

这个错误一般在上传文件的时候会出现

解决方法

编辑 nginx 主配置文件 nginx.conf,找到 http 配置,添加 client_max_body_size 配置

http {
...
client_max_body_size 100m;
}