]> git.openstreetmap.org Git - chef.git/blob - cookbooks/forum/recipes/default.rb
Update forum to fluxbb 1.5.10
[chef.git] / cookbooks / forum / recipes / default.rb
1 #
2 # Cookbook Name:: forum
3 # Recipe:: default
4 #
5 # Copyright 2014, 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 include_recipe "apache::ssl"
20 include_recipe "git"
21 include_recipe "mysql"
22
23 passwords = data_bag_item("forum", "passwords")
24
25 package "php"
26 package "php-cli"
27 package "php-mysql"
28 package "php-xml"
29 package "php-apcu"
30
31 apache_module "php7.0"
32 apache_module "rewrite"
33
34 apache_site "default" do
35   action [:disable]
36 end
37
38 apache_site "forum.openstreetmap.org" do
39   template "apache.erb"
40 end
41
42 directory "/srv/forum.openstreetmap.org" do
43   owner "forum"
44   group "forum"
45   mode 0o755
46 end
47
48 git "/srv/forum.openstreetmap.org/html/" do
49   action :sync
50   repository "http://github.com/openstreetmap/openstreetmap-forum.git"
51   revision "openstreetmap-1.5.10"
52   depth 1
53   user "forum"
54   group "forum"
55   notifies :reload, "service[apache2]"
56 end
57
58 directory "/srv/forum.openstreetmap.org/html/cache/" do
59   owner "www-data"
60   group "www-data"
61   mode 0o755
62 end
63
64 directory "/srv/forum.openstreetmap.org/html/img/avatars/" do
65   owner "www-data"
66   group "www-data"
67   mode 0o755
68 end
69
70 template "/srv/forum.openstreetmap.org/html/config.php" do
71   source "config.php.erb"
72   owner "forum"
73   group "www-data"
74   mode 0o440
75   variables :passwords => passwords
76 end
77
78 mysql_user "forum@localhost" do
79   password passwords["database"]
80 end
81
82 mysql_database "forum" do
83   permissions "forum@localhost" => :all
84 end
85
86 template "/etc/cron.daily/forum-backup" do
87   source "backup.cron.erb"
88   owner "root"
89   group "root"
90   mode 0o750
91   variables :passwords => passwords
92 end