adding http security headers

This commit is contained in:
2026-05-15 10:08:08 +02:00
parent 091d00b5c2
commit eb3ffed163
2 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ RUN apt-get update && \
pecl install redis && \
docker-php-ext-enable redis
# Enable SSL module for Apache
RUN a2enmod ssl
# Enable Apache modules
RUN a2enmod ssl headers
# Restart Apache to apply changes
RUN service apache2 restart