From 6177166d827e30769eb7418f17b9701cf117bc80 Mon Sep 17 00:00:00 2001 From: Ludwig Lehnert Date: Mon, 12 Jan 2026 21:28:22 +0100 Subject: [PATCH] fixed index listing --- webserver.Dockerfile | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/webserver.Dockerfile b/webserver.Dockerfile index 671a50f..0ce3dc7 100644 --- a/webserver.Dockerfile +++ b/webserver.Dockerfile @@ -8,19 +8,6 @@ RUN sed -i \ -e 's/^#LoadModule alias_module/LoadModule alias_module/' \ /usr/local/apache2/conf/httpd.conf -# Add custom autoindex CSS (served from /icons/) -RUN printf '%s\n' \ - '/* Widen "Name" column in Apache autoindex */' \ - 'table#indexlist td.indexcolname, table#indexlist th.indexcolname {' \ - ' width: 60ch;' \ - ' max-width: 60ch;' \ - '}' \ - 'table#indexlist td.indexcolname a {' \ - ' display: inline-block;' \ - ' max-width: 60ch;' \ - '}' \ - > /usr/local/apache2/icons/autoindex-custom.css - # Configure autoindex + icons + .htaccess + ignore "_" entries + UTF-8 RUN printf '\n# --- Custom for file listing + .htaccess ---\n\ AddDefaultCharset UTF-8\n\ @@ -32,8 +19,8 @@ Alias /icons/ "/usr/local/apache2/icons/"\n\ Require all granted\n\ \n\ \n\ -# Inject CSS for directory listings\n\ -IndexHeadInsert ""\n\ +# Autoindex settings\n\ +IndexOptions FancyIndexing FoldersFirst NameWidth=*\n\ \n\ \n\ Options Indexes FollowSymLinks\n\