These forums are locked and archived, but all topics have been migrated to the new forum. You can search for this topic on the new forum: Search for PHP-FPM trouble on the new forum.
The trouble is with apache version check.
The test code is (file php-lib.pl
, row 371
) :
if ($mode eq "fpm" && ($apache::httpd_modules{'core'} < 2.4 || @oldppm)) {
We are check the version apache server to use different directives for setting connect to FPM.
But the problem is that SetHandler
works from version 2.4.10 and later.
So Virtualmin generates wrong config for apache 2.4.7 (Ubuntu 14)
The second row with check version code is 384
elsif ($mode eq "fpm" && $apache::httpd_modules{'core'} >= 2.4) {