Nginx 파일 업로드 용량 제한 수정

김지원·2021년 6월 21일
0

nginx

목록 보기
1/5
post-thumbnail

기본적으로 Nginx에서는 파일 업로드 시 1M 이상의 파일이 업로드가 되지 않게 되있습니다.

그래서 nginx를 front_proxy로 사용 시 사진 업로드 용량 제한이 걸리는 오류가 있었습니다.

웹 브라우저에서는 502 error

🔮 Nginx의 설정 파일은 /etc/nginx/nginx.conf

Linux 환경에서 실행

  1. nano /etc/nginx/nginx.conf
  2. server 탭 안에 client_max_body_size 10M(원하는 용량 크기)
server{
  client_max_body_size 10M
}
  1. 저장 후 service nginx restart 수행

참고: 블로그

profile
backend-developer

1개의 댓글

comment-user-thumbnail
2022년 3월 31일

지원님 좋은글 감사합니다. 퍼가도 될까요??

답글 달기