From 2c1ac978e8f646f427135785a2afbe9776d95852 Mon Sep 17 00:00:00 2001 From: Emily Hazlehurst Date: Wed, 17 Apr 2024 17:45:41 +0100 Subject: [PATCH] CDPT-1510: Increase memory limit to 256M (#536) --- deploy/config/php-fpm.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/config/php-fpm.conf b/deploy/config/php-fpm.conf index ecdaa029a..16f7a9163 100644 --- a/deploy/config/php-fpm.conf +++ b/deploy/config/php-fpm.conf @@ -22,7 +22,7 @@ include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_NAME $fastcgi_script_name; # Increase limits to allow for large file uploads. i.e. content import via Importer Plugin. -fastcgi_param PHP_VALUE "upload_max_filesize=64M \n post_max_size=64M \n max_execution_time=300"; +fastcgi_param PHP_VALUE "upload_max_filesize=64M \n post_max_size=64M \n max_execution_time=300 \n memory_limit=256M"; # configure buffers fastcgi_buffers 16 64k;