X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/67c2aceb91955ff583c41807759d203a4478e4b1..df2bcc2c2977e17157108ddfc1c9704d38ea89fd:/roles/ridley.rb diff --git a/roles/ridley.rb b/roles/ridley.rb index 7250ce893..d3ddde39d 100644 --- a/roles/ridley.rb +++ b/roles/ridley.rb @@ -2,34 +2,23 @@ name "ridley" description "Master role applied to ridley" default_attributes( - :ssl => { - :certificates => %w(osmfoundation openstreetmap) - }, :apache => { - :ssl => { - :certificate => "osmfoundation", - :certificate_chain => "startcom" + :mpm => "event", + :event => { + :min_spare_threads => 50, + :max_spare_threads => 150, + :max_connections_per_child => 10000, + :async_request_worker_factor => 4, + :listen_cores_buckets_ratio => 4 } }, + :bind => { + :clients => "ucl" + }, :dhcpd => { :first_address => "10.0.15.1", :last_address => "10.0.15.254" }, - :munin => { - :graphs => { - :apcpdu_ucl => { - :title => "Current for UCL", - :vlabel => "Amps", - :category => "Ups", - :values => { - :load => { - :sum => ["apcpdu_apc1.load", "apcpdu_apc2.load", "apcpdu_apc3.load"], - :label => "Load" - } - } - } - } - }, :networking => { :interfaces => { :external_ipv4 => { @@ -45,44 +34,6 @@ default_attributes( :address => "10.0.0.3" } } - }, - :openvpn => { - :address => "10.0.16.1", - :tunnels => { - :ic2ucl => { - :port => "1194", - :mode => "client", - :peer => { - :host => "ironbelly.openstreetmap.org", - :port => "1194" - } - }, - :shenron2ucl => { - :port => "1195", - :mode => "client", - :peer => { - :host => "shenron.openstreetmap.org", - :port => "1194" - } - }, - :ucl2bm => { - :port => "1196", - :mode => "client", - :peer => { - :host => "grisu.openstreetmap.org", - :port => "1196" - } - }, - :firefishy => { - :port => "1197", - :mode => "client", - :peer => { - :host => "home.firefishy.com", - :port => "1194", - :address => "10.0.16.201" - } - } - } } ) @@ -96,6 +47,7 @@ run_list( "role[blog]", "role[otrs]", "role[donate]", - "recipe[dhcpd]", - "recipe[openvpn]" + "recipe[hot]", + "recipe[dmca]", + "recipe[dhcpd]" )