]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/frontend.rb
Don't process mail jobs on Ubuntu 22.04 machines
[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 if node[:lsb][:release].to_f < 22.04
67   service "rails-jobs@mailers" do
68     action [:enable, :start]
69     supports :restart => true
70     subscribes :restart, "rails_port[www.openstreetmap.org]"
71     subscribes :restart, "systemd_service[rails-jobs]"
72   end
73 else
74   service "rails-jobs@mailers" do
75     action [:disable, :stop]
76   end
77 end
78
79 service "rails-jobs@storage" do
80   action [:enable, :start]
81   supports :restart => true
82   subscribes :restart, "rails_port[www.openstreetmap.org]"
83   subscribes :restart, "systemd_service[rails-jobs]"
84 end
85
86 service "rails-jobs@traces" do
87   action [:enable, :start]
88   supports :restart => true
89   subscribes :restart, "rails_port[www.openstreetmap.org]"
90   subscribes :restart, "systemd_service[rails-jobs]"
91 end