X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/a68415b8f2bf106b6ea5948b0605c897b516ef4f..005ae5bd819640bdfd31656393df2d2923be1f96:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index e2b41155d..8a1f42ea8 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -8,7 +8,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -22,14 +22,15 @@ include_recipe "apache" passwords = data_bag_item("dns", "passwords") -package "make" - -package "perl" -package "libxml-treebuilder-perl" -package "libxml-writer-perl" -package "libyaml-perl" -package "libwww-perl" -package "libjson-xs-perl" +package %w[ + make + perl + libxml-treebuilder-perl + libxml-writer-perl + libyaml-perl + libwww-perl + libjson-xs-perl +] directory "/srv/dns.openstreetmap.org" do owner "root" @@ -71,6 +72,11 @@ template "/srv/dns.openstreetmap.org/html/index.html" do variables :zones => zones end +ssl_certificate "dns.openstreetmap.org" do + domains "dns.openstreetmap.org" + notifies :reload, "service[apache2]" +end + apache_site "dns.openstreetmap.org" do template "apache.erb" directory "/srv/dns.openstreetmap.org"