forked from norman/fusionpbx-install.sh-github-mirror
* devuan: pull fail2ban updates from debian installer * devuan: merge updates to postgresql.sh from debian * devuan: pull updated resources/backup scripts from debian * devuan: merge and update php installer scripts * devuan: merged changes to reset_admin_password.sh from debian * devuan: fix release name typo for chimaera * devuan: merge iptables changes from debian * devuan: merge nginx changes from debian * devuan: merge letsencrypt.sh from debian * devuan: merge main install scripts and config from debian * devuan: simplify sngrep install, its in all maintained releases * devuan: merge main install script updates from debian * devuan: finish.sh: use /usr/sbin/service for restart * devuan: postgresql.sh: fix syntax error * devuan: update and unify sysvinit setup there is no sysvinit package available from freeswitch, usethe same init and defaults file for package and source install * devuan: add equvalent debian releasesto environment.sh * devuan: merge changes to switch* from debian * devuan: switch: use os_codenam_debian to add repos * devuan: olny stop ufw if it was installed * devuan: update config.sh defaults * devuan: remove systemd-specifics from switch package installation * devuan: install postgres before freeswitch * devuan: removed libyuv-dev installation, embedded in freeswitch * devuan: fix failing move of freeswitch music * devuan: removed another libyuv-dev installation, embedded in freeswitch * devuan: revert freeswitch script dir setting in /etc/default * devuan: Enable mod_av for the install. (#389) * devuan: merge improved nginx ssl settings (#388)
62 lines
1.7 KiB
Bash
Executable File
62 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
#move to script directory so all relative paths work
|
|
cd "$(dirname "$0")"
|
|
|
|
#includes
|
|
. ./config.sh
|
|
. ./colors.sh
|
|
. ./environment.sh
|
|
|
|
#send a message
|
|
verbose "Configuring PHP"
|
|
|
|
#set php version
|
|
#chimaera - bullseye
|
|
#beowolf - buster
|
|
if [ ."$os_codename" = ."beowolf" ]; then
|
|
php_version=7.3
|
|
fi
|
|
if [ ."$os_codename" = ."chimaera" ]; then
|
|
php_version=7.4
|
|
fi
|
|
|
|
#install dependencies
|
|
apt-get install -y nginx
|
|
if [ ."$php_version" = ."" ]; then
|
|
apt-get install -y php php-cli php-fpm php-pgsql php-sqlite3 php-odbc php-curl php-imap php-xml php-gd
|
|
fi
|
|
if [ ."$php_version" = ."7.3" ]; then
|
|
apt-get install -y php7.3 php7.3-cli php7.3-fpm php7.3-pgsql php7.3-sqlite3 php7.3-odbc php7.3-curl php7.3-imap php7.3-xml php7.3-gd php7.3-mbstring
|
|
fi
|
|
if [ ."$php_version" = ."7.4" ]; then
|
|
apt-get install -y php7.4 php7.4-cli php7.4-dev php7.4-fpm php7.4-pgsql php7.4-sqlite3 php7.4-odbc php7.4-curl php7.4-imap php7.4-xml php7.4-gd php7.4-mbstring
|
|
fi
|
|
|
|
#update config if source is being used
|
|
if [ ."$php_version" = ."7.3" ]; then
|
|
verbose "version 7.3"
|
|
php_ini_file='/etc/php/7.3/fpm/php.ini'
|
|
fi
|
|
if [ ."$php_version" = ."7.4" ]; then
|
|
verbose "version 7.4"
|
|
php_ini_file='/etc/php/7.4/fpm/php.ini'
|
|
fi
|
|
sed 's#post_max_size = .*#post_max_size = 80M#g' -i $php_ini_file
|
|
sed 's#upload_max_filesize = .*#upload_max_filesize = 80M#g' -i $php_ini_file
|
|
sed 's#;max_input_vars = .*#max_input_vars = 8000#g' -i $php_ini_file
|
|
sed 's#; max_input_vars = .*#max_input_vars = 8000#g' -i $php_ini_file
|
|
|
|
#install ioncube
|
|
if [ .$cpu_architecture = .'x86' ]; then
|
|
. ./ioncube.sh
|
|
fi
|
|
|
|
#restart php-fpm
|
|
if [ ."$php_version" = ."7.3" ]; then
|
|
/usr/sbin/service php7.3-fpm restart
|
|
fi
|
|
if [ ."$php_version" = ."7.4" ]; then
|
|
/usr/sbin/service php7.4-fpm restart
|
|
fi
|