17 lines
501 B
Bash
17 lines
501 B
Bash
###============================================================
|
|
## Ubuntu 18.04 Apache PHP-FPM Installer
|
|
###============================================================
|
|
## Zet comments hieronder:
|
|
#
|
|
# Dit script zorgt ervoor dat http2 werkt op Apache.
|
|
#
|
|
##=============================================================
|
|
|
|
apachectl stop
|
|
apt install -y php${phpver}-fpm
|
|
a2enmod proxy_fcgi setenvif
|
|
a2enconf php${phpver}-fpm
|
|
a2dismod php${phpver}
|
|
a2dismod mpm_prefork
|
|
a2enmod mpm_worker
|
|
apachectl start |