php 파일 업로드 사이즈는 기본적인 php.ini 수정하여 되었다
(http://jasontody.tistory.com/65 참고)
그런데..
추가적으로 해줘야 될 사항들.
(용량을 크게 늘린다던지 등..)
[ /etc/php5/fpm/php.ini ]
1. file_uploads = On
2. upload_max_filesize 10M
3. post_max_size 10M
4. max_input_time 300
5. max_execution_time 300
6. memory_limit 128M
* post_max_size > upload_max_filesize
[ /etc/nginx/sites-available/default ]
1. client_max_body_size 100M
'공부 > Linux' 카테고리의 다른 글
PHP 5.3 ~ 7.2 + Nginx + MariaDB + 앱 자동 설치 (0) | 2018.02.18 |
---|---|
Nginx Php 세팅 오류/ 502 BadGateway ([emerg] "fastcgi_pass" directive is duplicate in /etc/nginx/sites-enabled/default:58) (0) | 2016.09.04 |
php sendmail mail.. 작동.. (0) | 2015.12.16 |
Nginx 홈페이지 Rewrite (하드, 임시) (0) | 2015.11.15 |
Ubuntu Subdomain 설정하기(서브도메인) (0) | 2015.09.26 |