From 5b9c9d68addf3c10e8e0953a1c6f7f35fa6b60a6 Mon Sep 17 00:00:00 2001 From: mkee Date: Thu, 30 Jul 2026 04:20:06 +0000 Subject: [PATCH] revert 32465054160cbda9ebc2b8d05cb503cc9b12be96 revert Update build/run/installer.sh Change php max upload size from 0 to 10G. --- build/run/installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/run/installer.sh b/build/run/installer.sh index bbe9c73..a6433a6 100755 --- a/build/run/installer.sh +++ b/build/run/installer.sh @@ -26,8 +26,8 @@ install -m 750 -o opendmarc -g postfix -d /var/spool/postfix/opendmarc/ #// PHP #// ############### -sed -e '/upload_max_filesize =/c upload_max_filesize = 10G' \ - -e '/post_max_size =/c post_max_size = 10G' \ +sed -e '/upload_max_filesize =/c upload_max_filesize = 0' \ + -e '/post_max_size =/c post_max_size = 0' \ -e '/memory_limit =/c memory_limit = 4096M' \ -i $(find /etc/php*/ -name 'php.ini')