Skip to content

Instantly share code, notes, and snippets.

@dleone81
Last active December 19, 2018 15:53
Show Gist options
  • Save dleone81/de311bee44c44a7ce8813cd17a5e9af9 to your computer and use it in GitHub Desktop.
Save dleone81/de311bee44c44a7ce8813cd17a5e9af9 to your computer and use it in GitHub Desktop.
To update upload_max_filesize && post_max_size on Ubuntu 14.04 LTS with PHP Version 5.5.9-1ubuntu4.24 with PHP5-FPM support you've to update /etc/php5/fpm/pool.d/www.conf
# add at bottom file
# /etc/php5/fpm/pool.d/www.conf
php_value[upload_max_filesize] = 8M
php_value[post_max_size]=10M
# after reboot the service
sudo service php5-fpm restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment