隐藏

Nginx 配置之解决 413 错误(Request Entity Too Large)

发布:2022/10/5 19:38:56作者:管理员 来源:本站 浏览次数:859

错误信息

 

    Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)
    使用 Nginx 服务器上传文件时,浏览器报 413 请求过大

解决办法

设置 Nginx 参数

找到配置文件 nginx.conf (如没有额外配置其他 conf ),在 http{} 或 server{} 或 location{} 节点下添加 client_max_body_size

client_max_body_size 10m; #(改成你想要的数值)