]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/civicrm/recipes/default.rb
Add temporary SSL certification for crm.osmfoundation.org
[chef.git] / cookbooks / civicrm / recipes / default.rb
index 992d928bec6299a0133345f8f3906cc6b3f7359a..382cb53b442b78b35a464054871a1e4e0e8da2ad 100644 (file)
@@ -17,6 +17,8 @@
 # limitations under the License.
 #
 
+node.default[:ssl][:certificates] = node[:ssl][:certificates] | [ "crm.osmfoundation" ]
+
 include_recipe "wordpress"
 include_recipe "mysql"
 
@@ -37,12 +39,18 @@ mysql_database "civicrm" do
 end
 
 wordpress_site "crm.osmfoundation.org" do
-  ssl_enabled false
+  ssl_enabled true
+  ssl_certificate "crm.osmfoundation"
   database_name "civicrm"
   database_user "civicrm"
   database_password database_password
 end
 
+wordpress_theme "osmblog-wp-theme" do
+  site "crm.osmfoundation.org"
+  repository "git://github.com/harry-wood/osmblog-wp-theme.git"
+end
+
 civicrm_version = node[:civicrm][:version]
 civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm"