]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/frontend.rb
4c50df6681246edf05242ecc1a8f902667a9cb29
[chef.git] / cookbooks / web / recipes / frontend.rb
1 #
2 # Cookbook Name:: web
3 # Recipe:: frontend
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 include_recipe "memcached"
21 include_recipe "apache::ssl"
22 include_recipe "web::rails"
23 include_recipe "web::cgimap"
24
25 web_passwords = data_bag_item("web", "passwords")
26
27 apache_module "alias"
28 apache_module "deflate"
29 apache_module "expires"
30 apache_module "headers"
31 apache_module "proxy_fcgi"
32 apache_module "proxy_http"
33 apache_module "proxy_balancer"
34 apache_module "lbmethod_byrequests"
35 apache_module "lbmethod_bybusyness"
36 apache_module "rewrite"
37
38 apache_site "default" do
39   action [:disable]
40 end
41
42 apache_site "www.openstreetmap.org" do
43   template "apache.frontend.erb"
44   variables :secret_key_base => web_passwords["secret_key_base"]
45 end
46
47 gem_package "hpricot"
48 gem_package "home_run"
49 gem_package "apachelogregex"
50
51 template "/etc/logrotate.d/apache2" do
52   source "logrotate.apache.erb"
53   owner "root"
54   group "root"
55   mode 0644
56 end
57
58 munin_plugin "api_calls_num" do
59   action :delete
60 end
61
62 munin_plugin "api_calls_#{node[:hostname]}" do
63   target "api_calls_"
64 end
65
66 munin_plugin "api_waits_#{node[:hostname]}" do
67   target "api_waits_"
68 end
69
70 node.set[:memcached][:ip_address] = node.external_ipaddress
71
72 firewall_rule "accept-memcache-tcp" do
73   action :accept
74   family "inet"
75   source "ic"
76   dest "fw"
77   proto "tcp"
78   dest_ports "11211"
79   source_ports "1024:"
80 end
81
82 firewall_rule "accept-memcache-udp" do
83   action :accept
84   family "inet"
85   source "ic"
86   dest "fw"
87   proto "udp"
88   dest_ports "11211"
89   source_ports "1024:"
90 end