]> git.openstreetmap.org Git - chef.git/blob - roles/foundation.rb
Fix tile expiry to use the correct paths
[chef.git] / roles / foundation.rb
1 name "foundation"
2 description "Role applied to all OSMF servers"
3
4 default_attributes(
5   :apache => {
6     :mpm => "prefork",
7     :timeout => 60,
8     :keepalive => false
9   },
10   :apt => {
11     :sources => [ "brightbox", "aw-drupal" ]
12   },
13   :memcached => {
14     :memory_limit => 400,
15     :chunk_growth_factor => 1.05,
16     :min_item_size => 5
17   }
18 )
19
20 run_list(
21   "recipe[mediawiki]",
22   "recipe[civicrm]"
23 )