From 83b86551431298421f07d9411cb5b3f098bf2c29 Mon Sep 17 00:00:00 2001 From: Christoph Kottke Date: Fri, 26 Apr 2024 09:05:06 +0200 Subject: [PATCH] remove 'index.php' by default --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 454be6674..ec12161a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,7 @@ RUN set -e; \ mkdir ./application/config/docker; \ \ 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; \ \