리눅스서버/Ubuntu
[nginx] Ubuntu, 413 Request Entity Too Large 해결하기 - 대용량 업로드 가능토록
http://portfolio.wonpaper.net
2024. 3. 5. 23:07
대용량의 파일업로드시 자주 나타나는 오류메세지이다. 늘여주자.
nginx.conf 에서
http {
client_max_body_size 5M;
...
}
5M 하면 5메가, 0으로 하면 무제한이다.
Syntax: client_max_body_size size;
Default: client_max_body_size 1m;
Context: http, server, location
수정하고 nginx 리스타트 하자.
참고 : https://blog.leocat.kr/notes/2020/04/21/nginx-413-request-entity-too-large