fix: abilita mod_headers nel Dockerfile (richiesto da .htaccess no-cache)

This commit is contained in:
dadaloop82
2026-04-20 17:37:03 +00:00
parent 517a615d11
commit 4e4c1867bf
+2 -2
View File
@@ -8,8 +8,8 @@ RUN apt-get update && apt-get install -y \
&& docker-php-ext-install pdo_sqlite curl mbstring \ && docker-php-ext-install pdo_sqlite curl mbstring \
&& apt-get clean && rm -rf /var/lib/apt/lists/* && apt-get clean && rm -rf /var/lib/apt/lists/*
# Enable Apache mod_rewrite # Enable Apache mod_rewrite and mod_headers
RUN a2enmod rewrite RUN a2enmod rewrite headers
# Set working directory # Set working directory
WORKDIR /var/www/html WORKDIR /var/www/html