I'm running php5-fpm under Nginx on Ubuntu 14.04. I want to increase the max upload size.
I have edited my /etc/php5/fpm/php.ini
to have the following lines defined as below:
upload_max_filesize = 20M
post_max_size = 25M
and I restarted php5-fpm and nginx but phpinfo()
is still showing the limits to be 8M and 2M for post and upload respectively.
Is there anything I have missed here?