Up the file upload size NGINX

PHP config

find php.ini

php –ini

vim 

upload_max_filesize = 100M

post_max_size = 100M

 

NGinx config

nginx.conf

http {

[…]

client_max_body_size 100m;

[…]

}

$ sudo service nginx reload

$ sudo service php-fpm reload

Leave a Comment

You must be logged in to post a comment.