add msg for restarting php

This commit is contained in:
Lee 2023-07-04 17:25:08 +01:00
parent a22377a56f
commit 3ead2f2c8e

@ -13,13 +13,15 @@ fi
# Start php dep
echo "Starting PHP"
service php8.1-fpm start
chmod 777 /run/php/php8.1-fpm.sock # I don't know how to fix this properly, but it works.
# I don't know how to fix this properly, but it works.
chmod 777 /run/php/php8.1-fpm.sock
echo "Setting max upload size to ${MAX_UPLOAD_SIZE}"
sed -i "s/^upload_max_filesize = .*/upload_max_filesize = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini
sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini
# Restart php to apply changes
echo "Restarting PHP to apply changes for max upload size"
service php8.1-fpm restart
# Start Nginx