|
3 | 3 |
|
4 | 4 | # Get env vars in the Dockerfile to show up in the SSH session
|
5 | 5 | eval $(printenv | sed -n "s/^\([^=]\+\)=\(.*\)$/export \1=\2/p" | sed 's/"/\\\"/g' | sed '/=/s//="/' | sed 's/$/"/' >> /etc/profile)
|
6 |
| - |
| 6 | + |
| 7 | +# Mount Azure File Share |
| 8 | +/usr/local/bin/mount-azure-file-share.sh |
| 9 | + |
7 | 10 | echo "Starting SSH ..."
|
8 | 11 | /usr/sbin/sshd
|
9 | 12 |
|
10 | 13 | chmod +x /usr/local/bin/ojs-variable
|
11 | 14 | # 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 | 15 | sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-variable
|
13 | 16 |
|
14 |
| -# Create required /mnt/azure/ subdirectories if they don't exist |
15 |
| -mkdir -p /mnt/azure/files |
16 |
| -mkdir -p /mnt/azure/public |
17 |
| - |
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 |
21 |
| - |
22 |
| -# Ensure that /mnt/azure/public is accessible to the web server |
23 |
| -chown -R apache:www-data /mnt/azure/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 | 17 | echo "Adding symlink to persistent /mnt/azure/public directory in web root"
|
28 |
| -ln -s /mnt/azure/public /var/www/html/public |
| 18 | +ln -s /mnt/azure/public /var/www/html/public || echo "Symlink already exists" |
29 | 19 |
|
30 | 20 | declare -A configVariable
|
31 | 21 | if [ -f $SAVED_OJS_CONF ]
|
32 | 22 | then
|
33 |
| - echo "Using existing config.inc.php from /mnt/azure/config.inc.php" |
| 23 | + echo "Using existing config.inc.php from /mnt/azure/files/config.inc.php" |
34 | 24 | cp $SAVED_OJS_CONF $OJS_CONF
|
35 | 25 | else
|
36 | 26 | # Set config variables using env variables https://github.com/pkp/ojs/blob/main/config.TEMPLATE.inc.php
|
37 |
| - echo "No existing config in /mnt/azure. Updating OJS config based on env variables..." |
| 27 | + echo "No existing config in /mnt/azure/files. Updating OJS config based on env variables..." |
38 | 28 | # General
|
39 | 29 | configVariable["installed"]="On"
|
40 | 30 | # configVariable["base_url"]=$WEBSITE_HOSTNAME
|
|
50 | 40 | configVariable["locale"]="en"
|
51 | 41 | # Files
|
52 | 42 | configVariable["files_dir"]="/mnt/azure/files"
|
53 |
| - configVariable["public_files_dir"]="../../../mnt/azure/public" |
| 43 | + configVariable["public_files_dir"]="/mnt/azure/public" |
54 | 44 | # Security
|
55 | 45 | configVariable["force_ssl"]="On"
|
56 | 46 | configVariable["salt"]=$SALT
|
|
0 commit comments