반응형
NGINX의 기본 Request 사이즈는 2 MB로 되어 있다.
따라서 NGINX를 이용해서 파일 업로드를 할 경우 사전에 Request 사이즈를 늘려 놓아야 한다.
설정하는 방법은 간단하다. nginx의 환경 설정 파일의 http 설정에 넣어주면 된다.
sudo nano /etc/nginx/nginx.conf
nginx.conf에 client_max_body_size 4000M;를 추가하자.
http {
client_max_body_size 4000M;
그후 서비스 적용을 위해 Reload를 진행하자.
sudo service nginx reload
참고
http://nginx.org/en/docs/http/ngx_http_core_module.html
반응형
'Linux' 카테고리의 다른 글
Installing VMware Tools for Ubuntu/CentOS virtual machine (0) | 2020.11.16 |
---|---|
.Net/core - make service for auto-start when boot on Ubuntu (0) | 2020.11.12 |
MariaDB/Mysql - Install and Remote connection by New User (0) | 2020.11.06 |
MariaDB - Specified key was too long (0) | 2020.11.06 |
ElasticSearch Size Management – Shards, logstash (0) | 2020.11.05 |