]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
Revert "Switch the web site to use poldi for nominatim"
[chef.git] / cookbooks / web / recipes / rails.rb
1 #
2 # Cookbook Name:: web
3 # Recipe:: rails
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 "tools"
21 include_recipe "web::base"
22
23 include_recipe "apache"
24 include_recipe "passenger"
25 include_recipe "git"
26
27 web_passwords = data_bag_item("web", "passwords")
28 db_passwords = data_bag_item("db", "passwords")
29
30 template "/etc/cron.hourly/passenger" do
31   cookbook "web"
32   source "passenger.cron.erb"
33   owner "root"
34   group "root"
35   mode 0755
36 end
37
38 rails_directory = "#{node[:web][:base_directory]}/rails"
39
40 piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _|
41   %w(chef_type data_bag id).include?(k)
42 end
43
44 rails_port "www.openstreetmap.org" do
45   ruby node[:passenger][:ruby_version]
46   directory rails_directory
47   user "rails"
48   group "rails"
49   repository "git://git.openstreetmap.org/rails.git"
50   revision "live"
51   database_host node[:web][:database_host]
52   database_name "openstreetmap"
53   database_username "rails"
54   database_password db_passwords["rails"]
55   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
56   status node[:web][:status]
57   messages_domain "messages.openstreetmap.org"
58   quova_username "ws360602"
59   quova_password web_passwords["quova"]
60   gpx_dir "/store/rails/gpx"
61   attachments_dir "/store/rails/attachments"
62   log_path "#{node[:web][:log_directory]}/rails.log"
63   memcache_servers %w(rails1 rails2 rails3)
64   potlatch2_key web_passwords["potlatch2_key"]
65   id_key web_passwords["id_key"]
66   oauth_key web_passwords["oauth_key"]
67   piwik_configuration piwik_configuration
68   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
69   google_auth_secret web_passwords["google_auth_secret"]
70   google_openid_realm "https://www.openstreetmap.org"
71   facebook_auth_id "427915424036881"
72   facebook_auth_secret web_passwords["facebook_auth_secret"]
73   windowslive_auth_id "0000000040153C51"
74   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
75 end
76
77 gem_package "apachelogregex"
78 gem_package "file-tail"
79
80 template "/usr/local/bin/api-statistics" do
81   source "api-statistics.erb"
82   owner "root"
83   group "root"
84   mode 0755
85 end
86
87 template "/etc/init.d/api-statistics" do
88   source "api-statistics.init.erb"
89   owner "root"
90   group "root"
91   mode 0755
92 end
93
94 service "api-statistics" do
95   action [:enable, :start]
96   supports :restart => true
97   subscribes :restart, "template[/usr/local/bin/api-statistics]"
98   subscribes :restart, "template[/etc/init.d/api-statistics]"
99 end
100
101 munin_plugin "api_calls_status"
102 munin_plugin "api_calls_num"
103
104 munin_plugin "api_calls_#{node[:hostname]}" do
105   target "api_calls_"
106 end
107
108 munin_plugin "api_waits_#{node[:hostname]}" do
109   target "api_waits_"
110 end