X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/44fabe91a8196d6f2a406c3d4ef0a99cec325d64..18e12b0e123fc3e5f344682f884feabc12da0f5a:/cookbooks/stateofthemap/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/stateofthemap/recipes/default.rb b/cookbooks/stateofthemap/recipes/default.rb index f0936381f..59d8eb18e 100644 --- a/cookbooks/stateofthemap/recipes/default.rb +++ b/cookbooks/stateofthemap/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, @@ -266,6 +266,27 @@ wordpress_plugin "2012.stateofthemap.org-wp-sticky" do site "2012.stateofthemap.org" end +%w[2013].each do |year| + git "/srv/#{year}.stateofthemap.org" do + action :sync + repository "git://git.openstreetmap.org/stateofthemap.git" + revision "site-#{year}" + user "root" + group "root" + end + + ssl_certificate "#{year}.stateofthemap.org" do + domains ["#{year}.stateofthemap.org", "#{year}.stateofthemap.com"] + notifies :reload, "service[apache2]" + end + + apache_site "#{year}.stateofthemap.org" do + template "apache.static.erb" + directory "/srv/#{year}.stateofthemap.org" + variables :year => year + end +end + %w[2016 2017 2018].each do |year| git "/srv/#{year}.stateofthemap.org" do action :sync