]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apache/recipes/default.rb
a24ea18f2f441844444d63794c2cdb921983e45f
[chef.git] / cookbooks / apache / recipes / default.rb
1 #
2 # Cookbook Name:: apache
3 # Recipe:: default
4 #
5 # Copyright 2011, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 package "apache2"
21 package "libwww-perl"
22
23 %w(event itk prefork worker).each do |mpm|
24   if mpm == node[:apache][:mpm]
25     apache_module "mpm_#{mpm}" do
26       action [:enable]
27     end
28   else
29     apache_module "mpm_#{mpm}" do
30       action [:disable]
31     end
32   end
33 end
34
35 admins = data_bag_item("apache", "admins")
36
37 apache_conf "httpd" do
38   template "httpd.conf.erb"
39   notifies :reload, "service[apache2]"
40 end
41
42 template "/etc/apache2/ports.conf" do
43   source "ports.conf.erb"
44   owner "root"
45   group "root"
46   mode 0o644
47 end
48
49 service "apache2" do
50   action [:enable, :start]
51   supports :status => true, :restart => true, :reload => true
52 end
53
54 apache_module "info" do
55   conf "info.conf.erb"
56   variables :hosts => admins["hosts"]
57 end
58
59 apache_module "status" do
60   conf "status.conf.erb"
61   variables :hosts => admins["hosts"]
62 end
63
64 apache_module "deflate" do
65   conf "deflate.conf.erb"
66 end
67
68 apache_module "reqtimeout" do
69   action [:disable]
70 end
71
72 munin_plugin "apache_accesses"
73 munin_plugin "apache_processes"
74 munin_plugin "apache_volume"