]> git.openstreetmap.org Git - chef.git/blob - cookbooks/forum/recipes/default.rb
Quote argument to prevent wildcard expansion
[chef.git] / cookbooks / forum / recipes / default.rb
1 #
2 # Cookbook:: 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 #     https://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"
20 include_recipe "git"
21 include_recipe "mysql"
22
23 cache_dir = Chef::Config[:file_cache_path]
24
25 passwords = data_bag_item("forum", "passwords")
26
27 package %w[
28   php
29   php-cli
30   php-mysql
31   php-xml
32   php-apcu
33   unzip
34 ]
35
36 apache_module "php7.2"
37 apache_module "rewrite"
38
39 ssl_certificate "forum.openstreetmap.org" do
40   domains ["forum.openstreetmap.org", "forum.osm.org"]
41   notifies :reload, "service[apache2]"
42 end
43
44 apache_site "forum.openstreetmap.org" do
45   template "apache.erb"
46 end
47
48 directory "/srv/forum.openstreetmap.org" do
49   owner "forum"
50   group "forum"
51   mode 0o755
52 end
53
54 git "/srv/forum.openstreetmap.org/html/" do
55   action :sync
56   repository "http://github.com/openstreetmap/openstreetmap-forum.git"
57   revision "openstreetmap-1.5.10"
58   depth 1
59   user "forum"
60   group "forum"
61   notifies :reload, "service[apache2]"
62 end
63
64 remote_file "#{cache_dir}/air3_v0.8.zip" do
65   action :create_if_missing
66   source "https://fluxbb.org/resources/styles/air3/releases/0.8/air3_v0.8.zip"
67   owner "root"
68   group "root"
69   mode 0o644
70   backup false
71 end
72
73 execute "#{cache_dir}/air3_v0.8.zip" do
74   action :nothing
75   command "unzip -o -qq #{cache_dir}/air3_v0.8.zip Air3.css 'Air3/*'"
76   cwd "/srv/forum.openstreetmap.org/html/style"
77   user "forum"
78   group "forum"
79   subscribes :run, "remote_file[#{cache_dir}/air3_v0.8.zip]", :immediately
80 end
81
82 directory "/srv/forum.openstreetmap.org/html/cache/" do
83   owner "www-data"
84   group "www-data"
85   mode 0o755
86 end
87
88 directory "/srv/forum.openstreetmap.org/html/img/avatars/" do
89   owner "www-data"
90   group "www-data"
91   mode 0o755
92 end
93
94 template "/srv/forum.openstreetmap.org/html/config.php" do
95   source "config.php.erb"
96   owner "forum"
97   group "www-data"
98   mode 0o440
99   variables :passwords => passwords
100 end
101
102 mysql_user "forum@localhost" do
103   password passwords["database"]
104 end
105
106 mysql_database "forum" do
107   permissions "forum@localhost" => :all
108 end
109
110 template "/etc/cron.daily/forum-backup" do
111   source "backup.cron.erb"
112   owner "root"
113   group "root"
114   mode 0o750
115   variables :passwords => passwords
116 end