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