]> git.openstreetmap.org Git - chef.git/blob - roles/forum.rb
Add tests for web cookbook
[chef.git] / roles / forum.rb
1 name "forum"
2 description "Role applied to all forum servers"
3
4 default_attributes(
5   :apache => {
6     :mpm => "prefork",
7     :timeout => 60,
8     :keepalive => false,
9     :prefork => {
10       :start_servers => 20,
11       :min_spare_servers => 20,
12       :max_spare_servers => 50,
13       :max_request_workers => 256
14     }
15   }
16 )
17
18 run_list(
19   "recipe[forum]"
20 )