Skip to content
Commits on Source (2)
<VirtualHost *:80>
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/?(.well-known)/
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
......@@ -16,6 +16,9 @@ COPY logo.png /var/www/images
COPY logo.svg /var/www/images
COPY configure-fuss.sh /
COPY crontab /etc
COPY 000-default.conf /etc/apache2/sites-available
RUN a2enmod rewrite
ENTRYPOINT ["/configure-fuss.sh"]
CMD ["apache2-foreground"]
......@@ -98,7 +98,7 @@ if [ "No admin mounts configured" = "$(run_as 'php /var/www/html/occ files_exter
cat > /tmp/fe_conf.txt <<EOF
{
"mount_id": 3,
"mount_point": "\/",
"mount_point": "\/FUSS_home",
"storage": "\\\\OCA\\\\Files_External\\\\Lib\\\\Storage\\\\SMB",
"authentication_type": "password::sessioncredentials",
"configuration": {
......