]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/wordpress/resources/site.rb
wordpress: Remove duplicate memory limit. Add ENV type
[chef.git] / cookbooks / wordpress / resources / site.rb
index c8a3e388321e200f56289d84b5d105dfbd0a0c88..0fcad6509f47883aeecb8d1d92998c7ed4962b68 100644 (file)
@@ -102,6 +102,8 @@ action :create do
       line += "define( 'AUTOMATIC_UPDATER_DISABLED', true);\r\n"
       line += "define( 'FORCE_SSL_LOGIN', true);\r\n"
       line += "define( 'FORCE_SSL_ADMIN', true);\r\n"
+      line += "define( 'WP_FAIL2BAN_SITE_HEALTH_SKIP_FILTERS', true);\r\n"
+      line += "define( 'WP_ENVIRONMENT_TYPE', 'production');\r\n"
     end
 
     line
@@ -149,7 +151,8 @@ action :create do
     php_admin_values "open_basedir" => "#{site_directory}/:/usr/share/php/:/tmp/",
                      "disable_functions" => "exec,shell_exec,system,passthru,popen,proc_open"
     php_values "upload_max_filesize" => "70M",
-               "post_max_size" => "100M"
+               "post_max_size" => "100M",
+               "memory_limit" => "368M"
     prometheus_port new_resource.fpm_prometheus_port
   end