22 lines
474 B
Bash
Executable File
22 lines
474 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#move to script directory so all relative paths work
|
|
cd "$(dirname "$0")"
|
|
|
|
. ./colors.sh
|
|
. ./arguments.sh
|
|
|
|
#send a message
|
|
verbose "Configuring PHP"
|
|
|
|
#update config if source is being used
|
|
sed 's#post_max_size = .*#post_max_size = 80M#g' -i /etc/php/7.0/fpm/php.ini
|
|
sed 's#upload_max_filesize = .*#upload_max_filesize = 80M#g' -i /etc/php/7.0/fpm/php.ini
|
|
|
|
#restart php-fpm
|
|
#systemd
|
|
/bin/systemctl restart php7.0-fpm
|
|
|
|
#init.d
|
|
#/usr/sbin/service php7.0-fpm restart
|