nginx_413_request_entity_too_large
最近客户反映新闻内容上传图片有的时候会出现失败的情况,一开始判断是图片太大导致超时出现的问题,仔细查看发现上传文件的请求出现了 413 request entity too large
的错误,而且这个错误是 nginx 返回的。
查找资料发现 nginx 默认请求的大小只有 1M,后来在 nginx.conf 配置文件中改成 100M 就解决了这个问题。
1 |
|
参考:http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
nginx_413_request_entity_too_large
https://blog.aalmix.com/2021/05/19/nginx-413-request-entity-too-large/