Skip to content

Commit 9a53f3b

Browse files
committed
Fix path of mounted public folder
1 parent eaa8c8e commit 9a53f3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

entrypoint.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ find /mnt/azure/files -type d -exec chmod 750 {} \; # for directories
2020
find /mnt/azure/files -type f -exec chmod 640 {} \; # for files
2121

2222
# Ensure that /mnt/azure/public is accessible to the web server
23-
chown -R apache:www-data /mnt/azure/files/public
23+
chown -R apache:www-data /mnt/azure/public
2424
find /mnt/azure/public -type d -exec chmod 750 {} \; # for directories
2525
find /mnt/azure/public -type f -exec chmod 640 {} \; # for files
2626

@@ -50,6 +50,7 @@ else
5050
configVariable["locale"]="en"
5151
# Files
5252
configVariable["files_dir"]="/mnt/azure/files"
53+
configVariable["public_files_dir"]="../../../mnt/azure/public"
5354
# Security
5455
configVariable["force_ssl"]="On"
5556
configVariable["salt"]=$SALT

0 commit comments

Comments
 (0)