We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb443a commit 94792d8Copy full SHA for 94792d8
entrypoint.sh
@@ -13,6 +13,14 @@ sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-varia
13
14
echo "Adding /home/files if not already present"
15
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
24
25
echo "Adding symlink to persistent /home/public directory in web root"
26
ln -s /home/public /var/www/html/public
0 commit comments