X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a7d96c8358a00088b485fadb5966eb4b231d2ff1..dc88c4068c574ea04d3085c8d8b0b80660688db7:/roles/planet.rb diff --git a/roles/planet.rb b/roles/planet.rb index 88cc5c1b5..7afcd2662 100644 --- a/roles/planet.rb +++ b/roles/planet.rb @@ -2,15 +2,6 @@ name "planet" description "Role applied to all planet servers" default_attributes( - :accounts => { - :users => { - :bretth => { :status => :user }, - :planet => { - :status => :role, - :members => [ :bretth ] - } - } - }, :rsyncd => { :modules => { :planet => { @@ -22,28 +13,38 @@ default_attributes( :uid => "nobody", :gid => "nogroup", :transfer_logging => false, - :exclude => [ ".*" ], + :exclude => [".*"], :max_connections => 10, :ignore_errors => true, :ignore_nonreadable => true, :timeout => 3600, - :refuse_options => [ "checksum" ] + :refuse_options => ["checksum"] } } }, + :networking => { + :firewall => { + :http_connection_limit => 10 + } + }, :apache => { :mpm => "event", - :keepalive => false, + :keepalive => true, :event => { :server_limit => 20, - :max_clients => 1000, - :threads_per_child => 50 + :max_request_workers => 1000, + :threads_per_child => 50, + :min_spare_threads => 75, + :max_spare_threads => 525, + :listen_cores_buckets_ratio => 4 } } ) run_list( + "role[web-db]", "recipe[planet]", + "recipe[planet::replication]", "recipe[nfs::server]", "recipe[rsyncd]" )