]> git.openstreetmap.org Git - chef.git/blob - roles/piwik.rb
Drop unused 2016.stateofthemap.org site
[chef.git] / roles / piwik.rb
1 name "piwik"
2 description "Role applied to all Piwik servers"
3
4 default_attributes(
5   :apache => {
6     :mpm => "prefork"
7   },
8   :mysql => {
9     :settings => {
10       :mysqld => {
11         :innodb_buffer_pool_instances => "8",
12         :innodb_buffer_pool_size => "16GB",
13         :innodb_flush_log_at_trx_commit => "2"
14       }
15     }
16   }
17 )
18
19 run_list(
20   "recipe[piwik]"
21 )