You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Temporary fix for error in ojs-variable (fixed here https://gitlab.com/pkp-org/docker/ojs/-/commit/f4f33f370e7c765b599868f0ca701898c875b47f, but not in stable-3_4_0 branch)
12
12
sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-variable
13
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
14
+
# Create required /mnt/azure/ subdirectories if they don't exist
15
+
mkdir -p /mnt/azure/files
16
+
mkdir -p /mnt/azure/public
19
17
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
18
+
chown -R apache:www-data /mnt/azure/files
19
+
find /mnt/azure/files -type d -exec chmod 750 {} \;# for directories
20
+
find /mnt/azure/files -type f -exec chmod 640 {} \;# for files
24
21
25
-
echo"Adding symlink to persistent /home/public directory in web root"
26
-
ln -s /home/public /var/www/html/public
22
+
# Ensure that /mnt/azure/public is accessible to the web server
23
+
chown -R apache:www-data /mnt/azure/files/public
24
+
find /mnt/azure/public -type d -exec chmod 750 {} \;# for directories
25
+
find /mnt/azure/public -type f -exec chmod 640 {} \;# for files
26
+
27
+
echo"Adding symlink to persistent /mnt/azure/public directory in web root"
28
+
ln -s /mnt/azure/public /var/www/html/public
27
29
28
30
declare -A configVariable
29
31
if [ -f$SAVED_OJS_CONF ]
30
32
then
31
-
echo"Using existing config.inc.php from /home/config.inc.php"
33
+
echo"Using existing config.inc.php from /mnt/azure/config.inc.php"
32
34
cp $SAVED_OJS_CONF$OJS_CONF
33
35
else
34
36
# Set config variables using env variables https://github.com/pkp/ojs/blob/main/config.TEMPLATE.inc.php
35
-
echo"No existing config in /home. Updating OJS config based on env variables..."
37
+
echo"No existing config in /mnt/azure. Updating OJS config based on env variables..."
0 commit comments