FROM php:8.3-apache # Enable the Apache modules still needed RUN a2enmod rewrite headers autoindex alias # Configure autoindex + icons + .htaccess + UTF-8 RUN printf '\n# --- Custom for file listing + .htaccess ---\n\ AddDefaultCharset UTF-8\n\ \n\ Include /etc/apache2/mods-enabled/autoindex.conf\n\ \n\ Alias /icons/ "/usr/share/apache2/icons/"\n\ \n\ Require all granted\n\ \n\ \n\ # Autoindex settings\n\ IndexOptions FancyIndexing FoldersFirst NameWidth=*\n\ \n\ \n\ Options Indexes FollowSymLinks\n\ IndexIgnore _*\n\ AllowOverride All\n\ Require all granted\n\ \n' >> /etc/apache2/apache2.conf EXPOSE 80