Enable PHP-FPM
PHP-FPM is enabled by default. In case you find that it is not, follow these steps to re-enable it:
Enable its control script:
$ cd /opt/bitnami $ mv php/scripts/ctl.sh.disabled php/scripts/ctl.sh
Start PHP-FPM:
$ cd /opt/bitnami $ ./ctlscript.sh start php-fpm
Enable PHP-FPM configuration in Apache. Update the /opt/bitnami/apache2/conf/httpd.conf file and comment out the LoadModule directive:
#LoadModule php7_module modules/libphp7.so
In the same file, disable the mpm_prefork module:
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
In the same file, enable the mpm_event module:
LoadModule mpm_event_module modules/mod_mpm_event.so
Restart Apache:
$ cd /opt/bitnami $ ./ctlscript.sh restart apache