All checks were successful
Deploy Feature Branch to Test / deploy (push) Successful in 24s
- Front Controller Pattern mit public/index.php als Einstiegspunkt - Eigenes Routing (App\Core\Router) ohne externes Framework - Controller: HomeController, ImpressumController, DatenschutzController - Views mit gemeinsamem Layout (app/views/layouts/main.php) - PSR-4 Autoloading - Statische Assets nach public/ verschoben - Alte Dateien (index.php, impressum.html, datenschutz.html) geloescht - 301-Redirects fuer alte URLs - PHP 8.5 kompatibel - Apache DocumentRoot auf public/ gesetzt
10 lines
231 B
Docker
Executable File
10 lines
231 B
Docker
Executable File
FROM nginx:alpine
|
|
|
|
# Eigene Nginx-Konfiguration kopieren
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Website-Dateien werden per Volume-Mount eingebunden
|
|
# Siehe: docker run -v ...
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |