From 0466be6a257bf204cb8e44f1e045509003dbd539 Mon Sep 17 00:00:00 2001 From: farvardin Date: Sun, 18 Feb 2024 22:00:20 +0100 Subject: [PATCH] remove chmod 750 on pages which prevents writing them --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 24818e6..c95e2df 100755 --- a/scripts/install +++ b/scripts/install @@ -73,9 +73,9 @@ ynh_add_nginx_config # chmod again to fix unaccessible templates / css files chmod -R 755 "$install_dir" -# don't allow read access to config.php and pages/ for everyone +# don't allow read access to config.php for everyone chmod 750 "$install_dir"/config.php -chmod -R 750 "$install_dir"/var/pages/ +# chmod -R 750 "$install_dir"/var/pages/ # prevents from writing pages! # chmod root folder chmod 750 "$install_dir"