]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/frontend.rb
Allow the trace importer to run on all frontends
[chef.git] / cookbooks / web / recipes / frontend.rb
1 #
2 # Cookbook:: 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 #     https://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 node.default[:memcached][:ip_address] = node.internal_ipaddress || "127.0.0.1"
21
22 include_recipe "memcached"
23 include_recipe "apache"
24 include_recipe "web::rails"
25 include_recipe "web::cgimap"
26
27 web_passwords = data_bag_item("web", "passwords")
28
29 apache_module "alias"
30 apache_module "expires"
31 apache_module "headers"
32 apache_module "proxy"
33 apache_module "proxy_fcgi"
34 apache_module "lbmethod_byrequests"
35 apache_module "lbmethod_bybusyness"
36 apache_module "rewrite"
37 apache_module "unique_id"
38
39 apache_site "default" do
40   action [:disable]
41 end
42
43 remote_directory "#{node[:web][:base_directory]}/static" do
44   source "static"
45   owner "root"
46   group "root"
47   mode "755"
48   files_owner "root"
49   files_group "root"
50   files_mode "644"
51 end
52
53 apache_site "www.openstreetmap.org" do
54   template "apache.frontend.erb"
55   variables :status => node[:web][:status],
56             :secret_key_base => web_passwords["secret_key_base"]
57 end
58
59 template "/etc/logrotate.d/apache2" do
60   source "logrotate.apache.erb"
61   owner "root"
62   group "root"
63   mode "644"
64 end
65
66 service "rails-jobs@mailers" do
67   action [:enable, :start]
68   supports :restart => true
69   subscribes :restart, "rails_port[www.openstreetmap.org]"
70   subscribes :restart, "systemd_service[rails-jobs]"
71 end
72
73 service "rails-jobs@storage" do
74   action [:enable, :start]
75   supports :restart => true
76   subscribes :restart, "rails_port[www.openstreetmap.org]"
77   subscribes :restart, "systemd_service[rails-jobs]"
78 end
79
80 service "rails-jobs@traces" do
81   action [:enable, :start]
82   supports :restart => true
83   subscribes :restart, "rails_port[www.openstreetmap.org]"
84   subscribes :restart, "systemd_service[rails-jobs]"
85 end