]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/rails.rb
848ac239d334601f553fa2e3ba27134ef5ca7aa9
[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 include_recipe "web::nfs"
23
24 include_recipe "apache"
25 include_recipe "passenger"
26 include_recipe "git"
27 include_recipe "nodejs"
28
29 web_passwords = data_bag_item("web", "passwords")
30 db_passwords = data_bag_item("db", "passwords")
31
32 nodejs_package "svgo"
33
34 template "/etc/cron.hourly/passenger" do
35   cookbook "web"
36   source "passenger.cron.erb"
37   owner "root"
38   group "root"
39   mode 0o755
40 end
41
42 rails_directory = "#{node[:web][:base_directory]}/rails"
43
44 piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _|
45   %w(chef_type data_bag id).include?(k)
46 end
47
48 rails_port "www.openstreetmap.org" do
49   ruby node[:passenger][:ruby_version]
50   directory rails_directory
51   user "rails"
52   group "rails"
53   repository "git://git.openstreetmap.org/rails.git"
54   revision "live"
55   database_host node[:web][:database_host]
56   database_name "openstreetmap"
57   database_username "rails"
58   database_password db_passwords["rails"]
59   email_from "OpenStreetMap <web@noreply.openstreetmap.org>"
60   status node[:web][:status]
61   messages_domain "messages.openstreetmap.org"
62   quova_username "ws360602"
63   quova_password web_passwords["quova"]
64   gpx_dir "/store/rails/gpx"
65   attachments_dir "/store/rails/attachments"
66   log_path "#{node[:web][:log_directory]}/rails.log"
67   logstash_path "#{node[:web][:log_directory]}/rails-logstash.log"
68   memcache_servers node[:web][:memcached_servers]
69   potlatch2_key web_passwords["potlatch2_key"]
70   id_key web_passwords["id_key"]
71   oauth_key web_passwords["oauth_key"]
72   piwik_configuration piwik_configuration
73   google_auth_id "651529786092-6c5ahcu0tpp95emiec8uibg11asmk34t.apps.googleusercontent.com"
74   google_auth_secret web_passwords["google_auth_secret"]
75   google_openid_realm "https://www.openstreetmap.org"
76   facebook_auth_id "427915424036881"
77   facebook_auth_secret web_passwords["facebook_auth_secret"]
78   windowslive_auth_id "0000000040153C51"
79   windowslive_auth_secret web_passwords["windowslive_auth_secret"]
80   github_auth_id "acf7da34edee99e35499"
81   github_auth_secret web_passwords["github_auth_secret"]
82   mapzen_valhalla_key web_passwords["mapzen_valhalla_key"]
83   thunderforest_key web_passwords["thunderforest_key"]
84 end
85
86 package "libjson-xs-perl"
87
88 template "/usr/local/bin/cleanup-rails-assets" do
89   source "cleanup-assets.erb"
90   owner "root"
91   group "root"
92   mode 0o755
93 end
94
95 gem_package "apachelogregex"
96 gem_package "file-tail"
97
98 template "/usr/local/bin/api-statistics" do
99   source "api-statistics.erb"
100   owner "root"
101   group "root"
102   mode 0o755
103 end
104
105 template "/etc/init.d/api-statistics" do
106   source "api-statistics.init.erb"
107   owner "root"
108   group "root"
109   mode 0o755
110 end
111
112 service "api-statistics" do
113   action [:enable, :start]
114   supports :restart => true
115   subscribes :restart, "template[/usr/local/bin/api-statistics]"
116   subscribes :restart, "template[/etc/init.d/api-statistics]"
117 end
118
119 gem_package "hpricot"
120
121 munin_plugin "api_calls_status"
122 munin_plugin "api_calls_num"
123
124 munin_plugin "api_calls_#{node[:hostname]}" do
125   target "api_calls_"
126 end
127
128 munin_plugin "api_waits_#{node[:hostname]}" do
129   target "api_waits_"
130 end