]> git.openstreetmap.org Git - chef.git/commitdiff
Add static site for 2013.stateofthemap.org
authorTom Hughes <tom@compton.nu>
Wed, 10 Jan 2018 18:39:58 +0000 (18:39 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 10 Jan 2018 19:04:14 +0000 (19:04 +0000)
cookbooks/stateofthemap/recipes/default.rb
cookbooks/stateofthemap/templates/default/apache.static.erb [new file with mode: 0644]

index f0936381ff53463ace6046c2a7bb4a12082909b9..13803a3e90206611043931d5fcb48f5c11242ed5 100644 (file)
@@ -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
diff --git a/cookbooks/stateofthemap/templates/default/apache.static.erb b/cookbooks/stateofthemap/templates/default/apache.static.erb
new file mode 100644 (file)
index 0000000..af83be7
--- /dev/null
@@ -0,0 +1,45 @@
+# DO NOT EDIT - This file is being maintained by Chef
+
+<VirtualHost *:80>
+        ServerName <%= @year %>.stateofthemap.org
+        ServerAlias <%= @year %>.stateofthemap.com
+        ServerAdmin webmaster@openstreetmap.org
+
+        CustomLog /var/log/apache2/<%= @year %>.stateofthemap.org-access.log combined
+        ErrorLog /var/log/apache2/<%= @year %>.stateofthemap.org-error.log
+
+        RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+        RedirectPermanent / https://<%= @year %>.stateofthemap.org/
+</VirtualHost>
+
+<VirtualHost *:443>
+        ServerName <%= @year %>.stateofthemap.com
+        ServerAdmin webmaster@openstreetmap.org
+
+        CustomLog /var/log/apache2/<%= @year %>.stateofthemap.org-access.log combined
+        ErrorLog /var/log/apache2/<%= @year %>.stateofthemap.org-error.log
+
+        SSLEngine on
+        SSLCertificateFile /etc/ssl/certs/<%= @year %>.stateofthemap.org.pem
+        SSLCertificateKeyFile /etc/ssl/private/<%= @year %>.stateofthemap.org.key
+
+        RedirectPermanent / https://<%= @year %>.stateofthemap.org/
+</VirtualHost>
+
+<VirtualHost *:443>
+        ServerName <%= @year %>.stateofthemap.org
+        ServerAdmin webmaster@openstreetmap.org
+
+        CustomLog /var/log/apache2/<%= @year %>.stateofthemap.org-access.log combined
+        ErrorLog /var/log/apache2/<%= @year %>.stateofthemap.org-error.log
+
+        SSLEngine on
+        SSLCertificateFile /etc/ssl/certs/<%= @year %>.stateofthemap.org.pem
+        SSLCertificateKeyFile /etc/ssl/private/<%= @year %>.stateofthemap.org.key
+
+        DocumentRoot /srv/<%= @year %>.stateofthemap.org
+</VirtualHost>
+
+<Directory /srv/<%= @year %>.stateofthemap.org>
+        Require all granted
+</Directory>