feat: Dockerfile und Dashboard-Modul hinzugefügt, .htaccess angepasst und SQL-Initialisierung optimiert
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user