-
[node] How to limit the HTTP request size and upload file size?Backend 2022. 6. 30. 15:29
디얼핏홈 관리자페이지에서 생활습관 개선 프로그램을 일자별로 설정한다.
거의 2년을 하다보니 일수가 797일차까지 되었는데,
자꾸 7월6일부터 추가가 안되고 서버에서 API 동작시 실행되는 로그도 안찍히고 500에러가 났다.
이유를 분석하니, 서버에서 배열 인풋값을 받을때 용량이 초과되어서였다.
그래서 아래와 같이 용량을 늘려줬다.
solution:
index.ts import bodyParser from "body-parser"; app.use(bodyParser.json({limit: "50mb"})); app.use(bodyParser.urlencoded({limit: "50mb", extended: true}));
'Backend' 카테고리의 다른 글
(letsencrypt) error no valid A records found for ; no valid AAAA records found for (0) 2023.04.11 helm 설치 후 자동완성 기능 추가 (0) 2023.04.10 [ssl] 가상서버 nginx에 ssl(https) 적용시키기 (feat. cafe24) (0) 2021.12.23 How to configure gzip on Nginx? (0) 2019.12.18 How to configure nginx as reverse proxy for node.js(express) with aws ec2. (0) 2019.12.18