Files
fusionpbx-install.sh/debian/resources/php.sh
Mafoo ae2c3ee411 Enhance-Add php config (#30)
update the post_max_size to 32M during the install
2016-08-02 11:14:57 -06:00

15 lines
267 B
Bash

#!/bin/sh
#send a message
echo "Configure PHP"
#update config if source is being used
sed 's#post_max_size = .*#post_max_size = 32M#g' -i /etc/php5/fpm/php.ini
#restart php5-fpm
#systemd
/bin/systemctl restart php5-fpm
#init.d
#/usr/sbin/service php5-fpm restart