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 "rewrite"
 
  37 apache_module "unique_id"
 
  39 apache_site "default" do
 
  43 remote_directory "#{node[:web][:base_directory]}/static" do
 
  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"]
 
  59 template "/etc/logrotate.d/apache2" do
 
  60   source "logrotate.apache.erb"
 
  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]"
 
  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]"
 
  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]"