5 # Copyright:: 2011, OpenStreetMap Foundation
 
   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
 
  11 #     https://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  20 node.default[:memcached][:ip_address] = node.internal_ipaddress || "127.0.0.1"
 
  22 include_recipe "memcached"
 
  23 include_recipe "apache"
 
  24 include_recipe "web::rails"
 
  25 include_recipe "web::cgimap"
 
  27 web_passwords = data_bag_item("web", "passwords")
 
  30 apache_module "expires"
 
  31 apache_module "headers"
 
  33 apache_module "proxy_fcgi"
 
  34 apache_module "lbmethod_byrequests"
 
  35 apache_module "lbmethod_bybusyness"
 
  36 apache_module "reqtimeout"
 
  37 apache_module "rewrite"
 
  38 apache_module "unique_id"
 
  40 apache_site "default" do
 
  44 remote_directory "#{node[:web][:base_directory]}/static" do
 
  54 apache_site "www.openstreetmap.org" do
 
  55   template "apache.frontend.erb"
 
  56   variables :status => node[:web][:status],
 
  57             :secret_key_base => web_passwords["secret_key_base"]
 
  60 template "/etc/logrotate.d/apache2" do
 
  61   source "logrotate.apache.erb"
 
  67 if %w[database_offline database_readonly].include?(node[:web][:status])
 
  68   service "rails-jobs@mailers" do
 
  72   service "rails-jobs@storage" do
 
  76   service "rails-jobs@traces" do
 
  80   service "rails-jobs@mailers" do
 
  81     action [:enable, :start]
 
  82     supports :restart => true
 
  83     subscribes :restart, "rails_port[www.openstreetmap.org]"
 
  84     subscribes :restart, "systemd_service[rails-jobs@]"
 
  87   service "rails-jobs@storage" do
 
  88     action [:enable, :start]
 
  89     supports :restart => true
 
  90     subscribes :restart, "rails_port[www.openstreetmap.org]"
 
  91     subscribes :restart, "systemd_service[rails-jobs@]"
 
  94   service "rails-jobs@traces" do
 
  95     action [:enable, :start]
 
  96     supports :restart => true
 
  97     subscribes :restart, "rails_port[www.openstreetmap.org]"
 
  98     subscribes :restart, "systemd_service[rails-jobs@]"