💡Aha!

Nginx 413 Request Entity Too Large 해결

왜 생기나?

nginx의 기본 client_max_body_size 값이 1M라서.

해결법

http {} 블럭에 client max body size를 설정해주자.

그냥 넉넉하게 100메가 박는 편..

client_max_body_size 100M;

ref

https://medium.com/@svsh227/error-413-request-entity-too-large-in-nginx-with-client-max-body-size-changes-in-nginx-6aacd525fe11

2024 Dohyun Jung.
Made with ☕️.