Skip to content

Commit 94792d8

Browse files
committed
Update /home permissions in entrypoint script
1 parent ebb443a commit 94792d8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

entrypoint.sh

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-varia
1313

1414
echo "Adding /home/files if not already present"
1515
mkdir -p /home/files
16+
chown -R apache:www-data /home/files
17+
find /home/files -type d -exec chmod 750 {} \; # for directories
18+
find /home/files -type f -exec chmod 640 {} \; # for files
19+
20+
# Ensure that /home/public is accessible to the web server
21+
chown -R apache:www-data /home/public
22+
find /home/public -type d -exec chmod 750 {} \; # for directories
23+
find /home/public -type f -exec chmod 640 {} \; # for files
1624

1725
echo "Adding symlink to persistent /home/public directory in web root"
1826
ln -s /home/public /var/www/html/public

0 commit comments

Comments
 (0)