fpm_prometheus_port 11301
end
-wordpress_theme "osmblog-wp-theme" do
- site "supporting.openstreetmap.org"
- action :delete
-end
-
wordpress_plugin "civicrm-wp-piwik" do
plugin "wp-piwik"
site "supporting.openstreetmap.org"
site "supporting.openstreetmap.org"
end
+wordpress_plugin "host-webfonts-local" do
+ site "supporting.openstreetmap.org"
+end
+
+wordpress_theme "morden" do
+ site "supporting.openstreetmap.org"
+ repository "https://public-api.wordpress.com/rest/v1/themes/download/morden.zip"
+end
+
+wordpress_theme "varia" do
+ site "supporting.openstreetmap.org"
+ repository "https://public-api.wordpress.com/rest/v1/themes/download/varia.zip"
+end
+
civicrm_version = node[:civicrm][:version]
civicrm_directory = "/srv/supporting.openstreetmap.org/wp-content/plugins/civicrm"
line.gsub!(/%%credKeys%%/, cred_keys)
line.gsub!(/%%signKeys%%/, sign_keys)
line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/supporting.openstreetmap.org');")
+ # Don't recompile smarty templates on every call https://docs.civicrm.org/sysadmin/en/latest/setup/optimizations/#disable-compile-check
+ line.gsub!(%r{// define\('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE\);}, "define('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE);")
+ # Upgrade smarty 2 to smarty 4
+ line.gsub!(/if \(strpos\(CIVICRM_UF_BASEURL, 'localhost'\) !== FALSE \|\| strpos\(CIVICRM_UF_BASEURL, 'demo\.civicrm\.org'\) !== FALSE\) \{/, "if (true) {")
line
end