I think the parameter you're looking for is
https://github.com/puppetlabs/puppetlabs-apache/#mpm_module
So:
class { 'apache':
mpm_module => 'prefork',
}
class { 'apache::mod::php': }
or if you need to provide the prefork module custom parameters:
class { 'apache':
mpm_module => false,
}
c
Have a bit of frustration here: I have a class I've written to install a
vhost based Wordpress site on a server. There will be serveral there.
Since mod_php is needed I also need to install mod_prefork.
I invoke the apache class thusly:
class {'apache':
default_