diff options
Diffstat (limited to 'manifests/subsystems/websites.pp')
-rw-r--r-- | manifests/subsystems/websites.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/subsystems/websites.pp b/manifests/subsystems/websites.pp index b688860..bdd0c78 100644 --- a/manifests/subsystems/websites.pp +++ b/manifests/subsystems/websites.pp @@ -60,6 +60,7 @@ class websites::setup { apache::site { "$default_vhost": server_alias => "$domain", docroot => "${apache_www_folder}", + mpm => false, } # We have to use 'zzz-error' so it will be the last matched vhost @@ -67,6 +68,7 @@ class websites::setup { template => 'apache/error.erb', docroot => "${apache_error_folder}", filename => 'zzz-error', + mpm => false, } # Index page for error |