From 08161a90d011c8a2052dff17ca4a38c1135b8fd6 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Wed, 5 Jul 2023 01:37:42 +0100 Subject: [PATCH] maybe fix env vars? --- docker/start.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/start.sh b/docker/start.sh index 8eca8bf..7003c30 100644 --- a/docker/start.sh +++ b/docker/start.sh @@ -26,6 +26,9 @@ sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/ # Set max upload size for nginx sed -i "s/client_max_body_size 500M;/client_max_body_size ${MAX_UPLOAD_SIZE};/" /etc/nginx/nginx.conf +# Setting env variable in php-fpm +echo "env[MAX_UPLOAD_SIZE] = ${MAX_UPLOAD_SIZE}" >> /etc/php/8.1/fpm/pool.d/www.conf + # Restart php to apply changes echo "Restarting PHP to apply changes for max upload size" service php8.1-fpm restart