Update build/run/installer.sh

Change php max upload size from 0 to 10G.
This commit is contained in:
mkee 2026-07-30 02:17:33 +00:00
commit 3246505416

View file

@ -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 = 0' \
-e '/post_max_size =/c post_max_size = 0' \
sed -e '/upload_max_filesize =/c upload_max_filesize = 10G' \
-e '/post_max_size =/c post_max_size = 10G' \
-e '/memory_limit =/c memory_limit = 4096M' \
-i $(find /etc/php*/ -name 'php.ini')