X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2c854e9952890a119750a187479eb2701107705f..6a4bf506e24211a6c4c6bd8a92d8af965690fd15:/cookbooks/wordpress/recipes/default.rb diff --git a/cookbooks/wordpress/recipes/default.rb b/cookbooks/wordpress/recipes/default.rb index 36485d244..187beac66 100644 --- a/cookbooks/wordpress/recipes/default.rb +++ b/cookbooks/wordpress/recipes/default.rb @@ -17,16 +17,24 @@ # limitations under the License. # -include_recipe "apache" -include_recipe "chef::gems" +include_recipe "apache::ssl" include_recipe "mysql" package "subversion" -package "php5" -package "php5-mysql" +package "php" +package "php-mysql" -package "php-apc" - -apache_module "php5" +apache_module "php7.0" apache_module "rewrite" + +fail2ban_filter "wordpress" do + source "https://plugins.svn.wordpress.org/wp-fail2ban/trunk/filters.d/wordpress-hard.conf" +end + +fail2ban_jail "wordpress" do + filter "wordpress" + logpath "/var/log/auth.log" + ports [80, 443] + maxretry 6 +end