Disable PHP-FPM
Before running the commands shown on this page, you should load the Bitnami stack environment by executing the installdir/use_APPNAME script (Linux and MacOS) or by clicking the shortcut in the Start Menu under “Start -> Bitnami APPNAME Stack -> Application console” (Windows). On OS X VMs, the installation directory is /opt/bitnami and OS X VM users can click the “Open Terminal” button to run commands. Learn more about the Bitnami stack environment and about OS X VMs.
To disable an already enabled PHP-FPM configuration, follow these steps:
Disable mpm_event by commenting the LoadModule directive:
#LoadModule mpm_event_module modules/mod_mpm_event.so
Enable mpm_prefork by uncommenting its LoadModule directive:
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
Enable mod_php by uncommenting its LoadModule directive:
LoadModule php7_module modules/libphp7.so
Restart Apache:
$ installdir/ctlscript.sh restart apache
Stop PHP-FPM:
$ installdir/ctlscript.sh stop php-fpm
Disable PHP-FPM:
$ sudo mv installdir/php/scripts/ctl.sh installdir/php/scripts/ctl.sh.disabled