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

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

解决方案

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

# http{} 中控制着所有nginx收到的请求
http{
    client_max_body_size 10m;
}
# 控制该server下收到的请求报文大小
server{
    client_max_body_size 10m;
}
# 只对匹配了location路由规则的请求生效(建议)
location{
    client_max_body_size 10m;
}

# 重启nginx
sudo nginx -s relaod
更新日期:
作者: qwding