413 request entity too large nginx 해결하기
원인
리버스 프록시를 사용하고 있었음,
nginx에서 client_max_body_size 옵션으로 요청의 최대 허용 크기를 설정할 수 있음 (기본값 1M)
https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
조치
구글에 '413 request entity too large nginx'로 검색하면 십중팔구 아래와 같은 처방전을 받을 수 있다.
client_max_body_size 100m;
'Server' 카테고리의 다른 글
AWS GuardDuty 맛보기 (0) | 2024.06.08 |
---|---|
AWS 웹방화벽 사용해보기(WAF & Shield) (0) | 2024.06.05 |
험난한 구글 클라우드 API 를 위한 서비스 계정 발급하기 (0) | 2024.05.07 |
Cuckoo 3 설치하기 (1) | 2024.05.06 |
우분투 캐시 메모리 점유를 트러블 슈팅해보기 (0) | 2024.03.20 |