17 lines
480 B
Bash
17 lines
480 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-fpm
|
|
a2enmod proxy_fcgi setenvif
|
|
a2enconf php7.2-fpm
|
|
a2dismod php7.2
|
|
a2dismod mpm_prefork
|
|
a2enmod mpm_worker
|
|
apachectl start |