Erste Produktivversion

This commit is contained in:
2026-08-08 20:31:58 +02:00
parent d8ded2816d
commit 7b21e2d1b4
110 changed files with 18170 additions and 644 deletions

12
web/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM nginx:alpine
# Konfiguration ausserhalb des Web-Roots
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY proxy_common.conf /etc/nginx/proxy_common.conf
COPY security_headers.conf /etc/nginx/security_headers.conf
# Statische Dateien. Ab Phase 3 kommt hier das gebaute Vite-Ergebnis
# aus einer vorgelagerten Build-Stufe hinein.
COPY html/ /usr/share/nginx/html/
EXPOSE 8080