From eea21d5a4998d69ab1f466d4e0c363795690c6ea Mon Sep 17 00:00:00 2001 From: Christoph Kottke Date: Thu, 9 May 2024 12:57:49 +0200 Subject: [PATCH] make htaccess sample file more visible --- Dockerfile | 2 +- .htaccess.sample => htaccess.sample | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .htaccess.sample => htaccess.sample (100%) diff --git a/Dockerfile b/Dockerfile index 30ac6ae19..b6cc04e0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN set -e; \ mkdir ./userdata; \ mkdir ./application/config/docker; \ \ - mv ./.htaccess.sample ./.htaccess; \ + mv ./htaccess.sample ./.htaccess; \ sed -i "s/\$config\['index_page'\] = 'index.php';/\$config\['index_page'\] = '';/g" ./install/config/config.php; \ \ chown -R root:www-data /var/www/html; \ diff --git a/.htaccess.sample b/htaccess.sample similarity index 100% rename from .htaccess.sample rename to htaccess.sample