nginx 报 413 Request Entity Too Large

这里上传minio文件时,通过nginx代理,发现抛出了413 Request Entity Too Large的异常,异常信息:

io.minio.errors.InvalidResponseException: Non-XML response from server. Response code: 413, Content-Type: text/html, body: <html>
<head><title>413 Request Entity Too Large</title></head>
<body>
<center><h1>413 Request Entity Too Large</h1></center>
<hr><center>nginx</center>
</body>
</html>

问题原因

用Nginx反向代理服务器,进行附件相关的操作时,当文件大小超过1M,会出现413 Request Entity Too Large,这是由于nginx客户端默认的最大请求体是1M。

解决方式

通过修改Nginx配置文件的“client_max_body_size”属性来解决。nginx的默认配置文件是conf目录下的nginx.conf。
注意:如果有自行扩展的配置文件可在nginx.conf文件中查找include关键字去定位到相应的扩展配置文件。

1. 在http节点下(http全局)

http {
                # 将nginx代理的所有请求实体的大小限制为1024m
                client_max_body_size 1024m;
        }

 2. 在server节点下(server全局)

server {
                # 将该服务下的所有请求实体的大小限制为1024m
                client_max_body_size 1024m;
        }

 3. 在location节点下(单应用)

location /test {
                 # 将此路由请求的实体大小限制为1024m
               client_max_body_size 1024m;
        } 

可以先配在http下,看是否成功。

重启nginx

你可能感兴趣的:(异常记录,nginx,运维)