X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/bad5762eecf43cd8cc5f6a55b9262378a3851881..aa3587c1e92706bffb2632470ec694532ff2c0c6:/cookbooks/wordpress/resources/site.rb diff --git a/cookbooks/wordpress/resources/site.rb b/cookbooks/wordpress/resources/site.rb index 1e3417188..c0e34dcff 100644 --- a/cookbooks/wordpress/resources/site.rb +++ b/cookbooks/wordpress/resources/site.rb @@ -103,6 +103,7 @@ action :create do 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_MEMORY_LIMIT', '256M');\r\n" end line @@ -150,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