]> git.openstreetmap.org Git - chef.git/blob - roles/gps-tile.rb
Configure modtile and renderd collectors
[chef.git] / roles / gps-tile.rb
1 name "gps-tile"
2 description "Role applied to all GPS tile servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :enf => { :status => :administrator },
8       :gpstile => {
9         :members => [:enf, :tomh]
10       }
11     }
12   },
13   :apache => {
14     :mpm => "event",
15     :event => {
16       :server_limit => 20,
17       :max_request_workers => 1000,
18       :threads_per_child => 50,
19       :min_spare_threads => 50,
20       :max_spare_threads => 450,
21       :async_request_worker_factor => 4
22     }
23   }
24 )
25
26 run_list(
27   "recipe[gps-tile]"
28 )