X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/00c06587499f5af427335d78681f01c7d3254769..6d1b6ef2ac6ab5f8df648544a7200fa35e13343e:/cookbooks/wordpress/resources/site.rb diff --git a/cookbooks/wordpress/resources/site.rb b/cookbooks/wordpress/resources/site.rb index cebd7b26f..69767e67a 100644 --- a/cookbooks/wordpress/resources/site.rb +++ b/cookbooks/wordpress/resources/site.rb @@ -33,6 +33,7 @@ property :database_name, :kind_of => String, :required => true property :database_user, :kind_of => String, :required => [:create] property :database_password, :kind_of => String, :required => [:create] property :database_prefix, :kind_of => String, :default => "wp_" +property :wp2fa_encrypt_key, :kind_of => String, :required => true property :urls, :kind_of => Hash, :default => {} property :fpm_max_children, :kind_of => Integer, :default => 10 property :fpm_start_servers, :kind_of => Integer, :default => 4 @@ -108,6 +109,7 @@ action :create do line += "define( 'WP_FAIL2BAN_SITE_HEALTH_SKIP_FILTERS', true);\r\n" line += "define( 'WP_ENVIRONMENT_TYPE', 'production');\r\n" line += "define( 'WP_MEMORY_LIMIT', '128M');\r\n" + line += "define( 'WP2FA_ENCRYPT_KEY', '#{new_resource.wp2fa_encrypt_key}');\r\n" end line @@ -189,22 +191,6 @@ action :create do reload_apache false end - script "#{site_directory}/wp-content/plugins/wp-fail2ban" do - action :nothing - interpreter "php" - cwd site_directory - user "wordpress" - code <<-WP_FAIL2BAN - - WP_FAIL2BAN - subscribes :run, "wordpress_plugin[wp-fail2ban]" - end - wordpress_plugin "wp-2fa" do site new_resource.site reload_apache false