Änderungen

This commit is contained in:
2026-04-23 15:59:58 +02:00
parent 0a8a239872
commit 917af5ab52
4 changed files with 238 additions and 167 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM nginx:alpine
# Alle Website-Dateien in den nginx HTML-Ordner kopieren
COPY . /usr/share/nginx/html
# Eigene nginx-Konfiguration (Gzip, Caching, saubere URLs)
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80