We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb71eb6 + c3df2c9 commit 32eededCopy full SHA for 32eeded
dockerscripts/startup.sh
@@ -187,6 +187,16 @@ if [ "$(cat ${ADMIDIO_INSTALLED_VERSION} 2>/dev/null)" != "$(cat ${ADMIDIO_IMAGE
187
rm -f "${ADMIDIO_INSTALLED_VERSION}"
188
fi
189
190
+# allow .htaccess overrides for admidio custom directory
191
+echo "[INFO ] add custom Apache directory config"
192
+cat <<EOF > /etc/apache2/conf-available/admidio-custom.conf
193
+<Directory /opt/app-root/src/adm_my_files>
194
+ AllowOverride All
195
+</Directory>
196
+EOF
197
+
198
+a2enconf admidio-custom
199
200
# run apache with php enabled as user default
201
echo "[INFO ] run apache config test (apachectl configtest)"
202
apachectl configtest
0 commit comments