]> git.openstreetmap.org Git - chef.git/blob - cookbooks/dmca/recipes/default.rb
b91fdc9c05b964e1fb6989897c9218d79fee99d0
[chef.git] / cookbooks / dmca / recipes / default.rb
1 #
2 # Cookbook Name:: dmca
3 # Recipe:: default
4 #
5 # Copyright 2018, 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
20 include_recipe "apache"
21
22 apache_module "php7.2"
23
24 directory "/srv/dmca.openstreetmap.org" do
25   owner "root"
26   group "root"
27   mode 0o755
28 end
29
30 remote_directory "/srv/dmca.openstreetmap.org/html" do
31   source "html"
32   owner "root"
33   group "root"
34   mode 0o755
35   files_owner "root"
36   files_group "root"
37   files_mode 0o644
38 end
39
40 ssl_certificate "dmca.openstreetmap.org" do
41   domains ["dmca.openstreetmap.org", "dmca.osm.org"]
42   notifies :reload, "service[apache2]"
43 end
44
45 apache_site "dmca.openstreetmap.org" do
46   template "apache.erb"
47   directory "/srv/dmca.openstreetmap.org"
48   variables :aliases => ["dmca.osm.org"]
49 end