]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/default.rb
Add a load more cookbooks to the public repository
[chef.git] / cookbooks / nominatim / recipes / default.rb
1 #
2 # Cookbook Name:: nominatim
3 # Recipe:: default
4 #
5 # Copyright 2012, 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 "apache"
21 include_recipe "postgresql"
22
23 package "php5"
24 package "php5-cli"
25 package "php5-pgsql"
26
27 package "php-apc"
28
29 apache_module "rewrite"
30 apache_module "fastcgi-handler"
31
32 service "php5-fpm" do
33   action [ :enable, :start ]
34   supports :status => true, :restart => true, :reload => true
35 end
36
37 postgresql_user "tomh" do
38   cluster "9.1/main"
39   superuser true
40 end
41
42 postgresql_user "lonvia" do
43   cluster "9.1/main"
44   superuser true
45 end
46
47 postgresql_user "twain" do
48   cluster "9.1/main"
49   superuser true
50 end
51
52 postgresql_user "www-data" do
53   cluster "9.1/main"
54 end
55
56 postgresql_munin "nominatim" do
57   cluster "9.1/main"
58   database "nominatim"
59 end