X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/c605827917355fa73e1bbcff26d8fb347951b9c3..a7ac67b5bde2b06fd0626707930977d7ef3b305b:/cookbooks/subversion/recipes/default.rb diff --git a/cookbooks/subversion/recipes/default.rb b/cookbooks/subversion/recipes/default.rb index 8419bbc40..d2eb7dfea 100644 --- a/cookbooks/subversion/recipes/default.rb +++ b/cookbooks/subversion/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, @@ -17,11 +17,10 @@ # limitations under the License. # -include_recipe "apache::ssl" +include_recipe "apache" package "subversion" -site_name = "svn.openstreetmap.org" repository_directory = "/var/lib/subversion/repos/openstreetmap" remote_directory "#{repository_directory}/hooks" do @@ -51,16 +50,15 @@ apache_module "authz_svn" do package "libapache2-svn" end -ssl_certificate site_name do - domains site_name - fallback_certificate "openstreetmap" +ssl_certificate "svn.openstreetmap.org" do + domains ["svn.openstreetmap.org", "svn.osm.org"] notifies :reload, "service[apache2]" end -apache_site site_name do +apache_site "svn.openstreetmap.org" do template "apache.erb" directory repository_directory - variables :realm => "Subversion Repository", :password_file => "/etc/apache2/svn.passwd" + variables :realm => "Subversion Repository", :password_file => "/etc/apache2/svn.passwd", :aliases => ["svn.osm.org"] end template "/etc/cron.daily/svn-backup" do