티스토리 뷰
ajax 413 Request Entity Too Large error
php 에서 2MB 초과하는 이미지파일 업로드시 413 에러가 난다
웹서버(여기서는 nginx )와 서버사이드(여기서는 php)의 기본 업로드 용량을 확장한다.
1. nginx 설정
[ etc/nginx/nginx.conf ]
1 2 3 4 5 6 | http{ ## client_max_body_size 5m; } | cs |
이렇게 설정하고 재시작
# service nginx restart
2. php 설정
[ etc/php/7.x ] cli, fpm => php.ini
1 2 | upload_max_filesize = 5M post_max_size = 5M | cs |
이렇게 설정하고 재시작
# service php7.0-fpm restart
댓글