]> git.openstreetmap.org Git - chef.git/blob - roles/taginfo.rb
Add a dev account for Manuel Hohmann
[chef.git] / roles / taginfo.rb
1 name "taginfo"
2 description "Role applied to all taginfo servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :jochen => {
8         :status => :administrator
9       },
10       :taginfo => {
11         :status => :role,
12         :members => [ :jochen, :tomh ]
13       }
14     }
15   },
16   :apache => {
17     :mpm => "event",
18     :event => {
19       :server_limit => 40,
20       :max_clients => 1000,
21       :min_spare_threads => 50,
22       :max_spare_threads => 150,
23       :threads_per_child => 50,
24       :max_requests_per_child => 10000
25     }
26   },
27   :taginfo => {
28     :sites => [
29       {
30         :name => "taginfo.openstreetmap.org",
31         :description => "This is the main taginfo site. It contains OSM data for the whole planet and is updated daily.",
32         :icon => "world",
33         :contact => "Jochen Topf <jochen@remote.org>"
34       }
35     ]
36   }
37 )
38
39 run_list(
40   "recipe[taginfo]"
41 )