feat: Dockerfile und Dashboard-Modul hinzugefügt, .htaccess angepasst und SQL-Initialisierung optimiert

This commit is contained in:
Troy Grunt
2026-02-07 16:28:05 +01:00
parent aae7237420
commit 4f32bf68ca
9 changed files with 154 additions and 13 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM php:8.3-apache
# Apache Module aktivieren
RUN a2enmod rewrite headers
# Optional, aber empfehlenswert:
# PHP-Einstellungen oder Extensions
# RUN docker-php-ext-install pdo pdo_mysql
RUN docker-php-ext-install mysqli pdo pdo_mysql
# Apache soll .htaccess erlauben
RUN sed -i 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf