5 # Copyright:: 2013, OpenStreetMap Foundation
 
   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
 
  11 #     https://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  20 include_recipe "wordpress"
 
  22 passwords = data_bag_item("blog", "passwords")
 
  24 directory "/srv/blog.openstreetmap.org" do
 
  30 wordpress_site "blog.openstreetmap.org" do
 
  31   aliases ["blog.osm.org", "blog.openstreetmap.com",
 
  32            "blog.openstreetmap.net", "blog.openstreetmaps.org",
 
  33            "blog.osmfoundation.org"]
 
  34   directory "/srv/blog.openstreetmap.org/wp"
 
  35   database_name "osm-blog"
 
  36   database_user "osm-blog-user"
 
  37   database_password passwords["osm-blog-user"]
 
  38   urls "/casts" => "/srv/blog.openstreetmap.org/casts",
 
  39        "/images" => "/srv/blog.openstreetmap.org/images",
 
  40        "/static" => "/srv/blog.openstreetmap.org/static"
 
  41   fpm_prometheus_port 11401
 
  44 wordpress_theme "blog.openstreetmap.org-osmblog-wp-theme" do
 
  45   theme "osmblog-wp-theme"
 
  46   site "blog.openstreetmap.org"
 
  47   repository "https://github.com/harry-wood/osmblog-wp-theme.git"
 
  50 wordpress_plugin "blog.openstreetmap.org-google-analytics-for-wordpress" do
 
  51   plugin "google-analytics-for-wordpress"
 
  52   site "blog.openstreetmap.org"
 
  55 wordpress_plugin "blog.openstreetmap.org-google-sitemap-generator" do
 
  56   plugin "google-sitemap-generator"
 
  57   site "blog.openstreetmap.org"
 
  60 wordpress_plugin "blog.openstreetmap.org-shareadraft" do
 
  62   site "blog.openstreetmap.org"
 
  65 wordpress_plugin "blog.openstreetmap.org-sitepress-multilingual-cms" do
 
  66   plugin "sitepress-multilingual-cms"
 
  67   site "blog.openstreetmap.org"
 
  68   repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git"
 
  72 wordpress_plugin "blog.openstreetmap.org-wordpress-importer" do
 
  73   plugin "wordpress-importer"
 
  74   site "blog.openstreetmap.org"
 
  77 wordpress_plugin "blog.openstreetmap.org-wp-piwik" do
 
  79   site "blog.openstreetmap.org"
 
  82 git "/srv/blog.openstreetmap.org/casts" do
 
  84   repository "https://github.com/openstreetmap/opengeodata-podcasts.git"
 
  90 git "/srv/blog.openstreetmap.org/images" do
 
  92   repository "https://github.com/openstreetmap/opengeodata-images.git"
 
  98 git "/srv/blog.openstreetmap.org/static" do
 
 100   repository "https://github.com/openstreetmap/opengeodata-static.git"
 
 106 ssl_certificate "opengeodata.org" do
 
 107   domains ["opengeodata.org", "www.opengeodata.org", "old.opengeodata.org"]
 
 108   notifies :reload, "service[apache2]"
 
 111 apache_site "opengeodata.org" do
 
 112   template "opengeodata.erb"
 
 113   directory "/srv/opengeodata.org"
 
 116 template "/etc/cron.daily/blog-backup" do
 
 117   source "backup.cron.erb"
 
 121   variables :passwords => passwords