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 #     http://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 node.default[:ssl][:certificates] = node[:ssl][:certificates] | ["osmfoundation"]
 
  22 include_recipe "wordpress"
 
  24 passwords = data_bag_item("blog", "passwords")
 
  26 directory "/srv/blog.openstreetmap.org" do
 
  32 wordpress_site "blog.openstreetmap.org" do
 
  33   aliases ["blog.osm.org", "blog.openstreetmap.com",
 
  34            "blog.openstreetmap.net", "blog.openstreetmaps.org",
 
  35            "blog.osmfoundation.org"]
 
  37   ssl_certificate "osmfoundation"
 
  38   ssl_certificate_chain "startcom"
 
  39   directory "/srv/blog.openstreetmap.org/wp"
 
  40   database_name "osm-blog"
 
  41   database_user "osm-blog-user"
 
  42   database_password passwords["osm-blog-user"]
 
  43   urls "/casts" => "/srv/blog.openstreetmap.org/casts",
 
  44        "/images" => "/srv/blog.openstreetmap.org/images",
 
  45        "/news" => "/srv/blog.openstreetmap.org/news"
 
  48 wordpress_theme "osmblog-wp-theme" do
 
  49   site "blog.openstreetmap.org"
 
  50   repository "git://github.com/harry-wood/osmblog-wp-theme.git"
 
  53 wordpress_plugin "google-analytics-for-wordpress" do
 
  54   site "blog.openstreetmap.org"
 
  57 wordpress_plugin "google-sitemap-generator" do
 
  58   site "blog.openstreetmap.org"
 
  61 wordpress_plugin "shareadraft" do
 
  62   site "blog.openstreetmap.org"
 
  65 wordpress_plugin "sitepress-multilingual-cms" do
 
  66   site "blog.openstreetmap.org"
 
  67   repository "git://chef.openstreetmap.org/sitepress-multilingual-cms.git"
 
  70 wordpress_plugin "wordpress-importer" do
 
  71   site "blog.openstreetmap.org"
 
  74 git "/srv/blog.openstreetmap.org/casts" do
 
  76   repository "git://github.com/openstreetmap/opengeodata-podcasts.git"
 
  82 git "/srv/blog.openstreetmap.org/images" do
 
  84   repository "git://github.com/openstreetmap/opengeodata-images.git"
 
  90 apache_site "opengeodata.org" do
 
  91   template "opengeodata.erb"
 
  92   directory "/srv/opengeodata.org"
 
  95 template "/etc/cron.daily/blog-backup" do
 
  96   source "backup.cron.erb"
 
 100   variables :passwords => passwords