Nginx 413 Request Entity Too Large

Nginx 413 Request Entity Too Large

1. 简述

在通过网页上传文件时,通过浏览器开发者工具查看发现后台响应状态码413 Request Entity Too Large,但在检查后台Server时确发现没有收到请求。

在这里插入图片描述

正常请求会经过1、2、3、4步聚,但此次请求只经过1、4步聚,检查Nginx发现下面日志信息。

2021/03/30 15:58:52 [error] 30#30: *32 client intended to send too large body: 18790901 bytes, client: xxxx, server: xxxx, request: "PUT /ks/note/save/00000000-0000-0000-0000-000000000000/22de72ba-fa76-4dee-ab8d-f3b974849a3a?clientType=web&clientVersion=4.0&lang=zh-cn HTTP/1.1", host: "xxxx", referrer: "https://xxxx/wapp/recent/00000000-0000-0000-0000-000000000000?l=zh-cn&clientType=macosx&clientVersion=2.8.7&p=wiz&docGuid=22de72ba-fa76-4dee-ab8d-f3b974849a3a"

2. 原因

因为上传文件时的请求body超过Nginx默认的1m大小限制,被 Nginx 给拦截了,下面是 Nginx 这部分官方文档信息,参考地址见末尾。

官方示例

Syntax:	client_max_body_size size;
Default:	
client_max_body_size 1m;
Context:	http, server, location

Sets the maximum allowed size of the client request body. If the size in a request exceeds the configured value, the 413 (Request Entity Too Large) error is returned to the client. Please be aware that browsers cannot correctly display this error. Setting size to 0 disables checking of client request body size.

3. 解决方法

http, server, location中的任一一处添加下面内容。

client_max_body_size 100m;

4. 参考

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

yimtcode

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值