From: Grant Slater Date: Sun, 30 Aug 2020 21:59:55 +0000 (+0100) Subject: forum: switch to apache mpm event X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/7de853b281eccfadf0459936da6b00f7d3cb598b forum: switch to apache mpm event --- diff --git a/roles/forum.rb b/roles/forum.rb index 3d8d36e2b..0eec150b0 100644 --- a/roles/forum.rb +++ b/roles/forum.rb @@ -3,10 +3,14 @@ description "Role applied to all forum servers" default_attributes( :apache => { + :mpm => "event", :timeout => 60, - :keepalive => false, - :worker => { - :max_request_workers => 250 + :event => { + :server_limit => 18, + :max_request_workers => 450, + :min_spare_threads => 50, + :max_spare_threads => 150, + :listen_cores_buckets_ratio => 4 } } )