nginx - 413 Request Entity Too Large 에러 오류 해결
nginx를 사용하는 환경에서 웹 파일 업로드시 413 Request Entity Too Large가 발생되는 경우가 있습니다. 원인은 nginx의 기본 body size가 1M이기 때문에 이보다 큰 용량을 요청할 경우 발생되는 에러입니다. client_max_body_size를 늘리면 문제를 해결할 수 있습니다. https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size Module ngx_http_core_module Module ngx_http_core_module Directives Syntax: absolute_redirect on | off; Default: absolute_redirect on; Context: ..
SW개발/Web
2021. 10. 29. 12:07