]> git.openstreetmap.org Git - chef.git/commitdiff
wordpress: Increase memory limit to allow large image resizes
authorGrant Slater <github@firefishy.com>
Wed, 15 Mar 2023 13:10:52 +0000 (13:10 +0000)
committerGrant Slater <github@firefishy.com>
Wed, 15 Mar 2023 13:10:52 +0000 (13:10 +0000)
cookbooks/wordpress/resources/site.rb

index 1e3417188e57eb9d42863cfd5c3e729f83a747e2..c0e34dcff6de6806f8219fe6be0e7fcd9a3ecf4e 100644 (file)
@@ -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