X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/601184bb64fce3feb74b9f4fd933649d05b92a22..b48a593c1d23cf965eb42c6993cba78850dcf9f2:/roles/taginfo.rb diff --git a/roles/taginfo.rb b/roles/taginfo.rb index 026d38656..9da56f28c 100644 --- a/roles/taginfo.rb +++ b/roles/taginfo.rb @@ -9,18 +9,41 @@ default_attributes( }, :taginfo => { :status => :role, - :members => [ :jochen, :tomh ] + :members => [:jochen, :tomh] } } }, - :apt => { - :sources => [ "brightbox-ruby-ng" ] + :apache => { + :mpm => "event", + :event => { + :server_limit => 40, + :max_request_workers => 1000, + :min_spare_threads => 50, + :max_spare_threads => 150, + :threads_per_child => 50, + :max_connections_per_child => 10000 + } + }, + :passenger => { + :max_pool_size => 50 + }, + :planet => { + :current => { + :jobs => { + :taginfo => { + :command => "/usr/local/bin/taginfo-update", + :user => "taginfo" + } + } + } }, :taginfo => { :sites => [ { :name => "taginfo.openstreetmap.org", + :aliases => ["taginfo.osm.org"], :description => "This is the main taginfo site. It contains OSM data for the whole planet and is updated daily.", + :about => "

This site is run by the OSMF and maintained by Jochen Topf and the Sysadmin team.

Several other taginfo sites are operated by different people for different areas of the world.

", :icon => "world", :contact => "Jochen Topf " } @@ -29,5 +52,6 @@ default_attributes( ) run_list( + "role[planet-current]", "recipe[taginfo]" )