Files
files/webserver.Dockerfile
2026-04-12 16:38:36 +02:00

28 lines
723 B
Docker

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\
<Directory "/usr/share/apache2/icons">\n\
Require all granted\n\
</Directory>\n\
\n\
# Autoindex settings\n\
IndexOptions FancyIndexing FoldersFirst NameWidth=*\n\
\n\
<Directory "/var/www/html">\n\
Options Indexes FollowSymLinks\n\
IndexIgnore _*\n\
AllowOverride All\n\
Require all granted\n\
</Directory>\n' >> /etc/apache2/apache2.conf
EXPOSE 80