Can one apache instance run different MPM's for different sites?
For example, I got a server with apache, and two sites: www.site1.com and www.site2.com.
Can I possibly have mpm_prefork_module on site1 and mpm_worker_module for site2?
Can one apache instance run different MPM's for different sites?
For example, I got a server with apache, and two sites: www.site1.com and www.site2.com.
Can I possibly have mpm_prefork_module on site1 and mpm_worker_module for site2?
You'd need to start two instances of Apache, Listening on non overlapping ip:port combinations, to use two different MPM's. You can't use a different MPM with just VirtualHost'ing.