From 558de16eda06ec1e2dad4b6f751b3997db4e2352 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 30 Aug 2021 12:19:41 +0200 Subject: [PATCH] group read permissions --- php_fpm/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php_fpm/entrypoint.sh b/php_fpm/entrypoint.sh index 201c415..a0934f1 100644 --- a/php_fpm/entrypoint.sh +++ b/php_fpm/entrypoint.sh @@ -31,8 +31,8 @@ else web.config.example \ uploads/placeholder.txt # fix permissions - find . -type d -exec chmod 700 {} \; - find . -type f -exec chmod 600 {} \; + find . -type d -exec chmod 750 {} \; + find . -type f -exec chmod 640 {} \; set +x echo "Done!" fi