728x90
반응형
이미지 파일 등을 올릴 때 Nginx에서 정한 사이즈보다 큰 경우에 나타나는 에러 문구
/etc/nginx/nginx.conf 또는
/etc/nginx/sites-available/default
에서 설정을 바꿔보자
client_max_body_size 50m;
50 메가 바이트까지 파일의 크기를 올릴 수 있게 지정
아래와 같이 특정 loation에 대해 client_max_body_size도 별도로 설정 가능
http {
# Global Nginx settings
client_max_body_size 50m; # Set the maximum body size for all servers
server {
listen 80;
server_name example.com;
# Set the maximum body size for this specific server
# client_max_body_size 100m;
location / {
proxy_pass http://your_backend_server;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Set the maximum body size for this specific location
# client_max_body_size 200m;
}
}
}
728x90
반응형
'Nginx' 카테고리의 다른 글
Nginx: restart in Mac (0) | 2024.11.26 |
---|---|
Nginx: Ubuntu에서 nginx 설치후 systemctl restart nginx 가 안될 때 (0) | 2024.07.03 |
Nginx: static 파일에 대한 log 생략으로 부하 줄이기 (0) | 2024.02.05 |
Nginx SSL 인증 # https # certbot (0) | 2023.03.17 |
Nginx static file 403 forbidden error # Nginx Static file을 못잡는 경우 (0) | 2023.03.16 |