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 # http://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 include_recipe "tools"
21 include_recipe "web::base"
23 include_recipe "apache"
24 include_recipe "passenger"
27 web_passwords = data_bag_item("web", "passwords")
28 db_passwords = data_bag_item("db", "passwords")
30 template "/etc/cron.hourly/passenger" do
32 source "passenger.cron.erb"
38 rails_directory = "#{node[:web][:base_directory]}/rails"
40 piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k,_|
41 ["chef_type", "data_bag", "id"].include?(k)
44 rails_port "www.openstreetmap.org" do
45 ruby node[:passenger][:ruby_version]
46 directory rails_directory
49 repository "git://git.openstreetmap.org/rails.git"
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 soft_memory_limit node[:web][:rails_soft_memory_limit]
61 hard_memory_limit node[:web][:rails_hard_memory_limit]
62 gpx_dir "/store/rails/gpx"
63 attachments_dir "/store/rails/attachments"
64 log_path "#{node[:web][:log_directory]}/rails.log"
65 memcache_servers [ "rails1", "rails2", "rails3" ]
66 potlatch2_key web_passwords["potlatch2_key"]
67 id_key web_passwords["id_key"]
68 oauth_key web_passwords["oauth_key"]
69 piwik_configuration piwik_configuration