]> git.openstreetmap.org Git - chef.git/blob - roles/piwik.rb
Adjust apache tuning for forum and piwik
[chef.git] / roles / piwik.rb
1 name "piwik"
2 description "Role applied to all Piwik servers"
3
4 default_attributes(
5   :apache => {
6     :worker => {
7       :max_request_workers => 450
8     }
9   },
10   :mysql => {
11     :settings => {
12       :mysqld => {
13         :innodb_buffer_pool_instances => "8",
14         :innodb_buffer_pool_size => "16GB",
15         :innodb_flush_log_at_trx_commit => "2"
16       }
17     }
18   }
19 )
20
21 run_list(
22   "recipe[piwik]"
23 )