I followed the steps to install PHP5.6 and PHP7.1 side by side on an Apache server, using FastCGI. One of the steps is to install and start php-fpm. However, when I stop this service, the PHP systems still work.
So, what is php-fpm actually doing if disabling it doesn't affect the server?
mod_phpinstead of newphp-fpm.. – alexus Sep 27 '18 at 19:29phpinfo()to see which version is being used. And the two configs show different PHP versions. The Apache config of these sites useAction php-fastcgi /cgi-bin/phpXX.fastcgias their config.phpinfo()saysServer API CGI/FastCGI. – Bart Friederichs Sep 28 '18 at 09:41