17 lines
429 B
Bash
17 lines
429 B
Bash
###============================================================
|
|
## Ubuntu 18.04 Apache PHP-FPM Installer
|
|
###============================================================
|
|
## Zet comments hieronder:
|
|
#
|
|
#
|
|
#
|
|
##=============================================================
|
|
|
|
apachectl stop
|
|
apt install -y php-fpm
|
|
a2enmod proxy_fcgi setenvif
|
|
a2enconf php7.2-fpm
|
|
a2dismod php7.2
|
|
a2dismod mpm_prefork
|
|
a2enmod mpm_worker
|
|
apachectl start |