zuul extra wip

This commit is contained in:
2025-03-04 14:14:09 +01:00
parent f8f73925e3
commit 3e1b8a629e
9 changed files with 335 additions and 90 deletions

13
Dockerfile-nginx Normal file
View File

@@ -0,0 +1,13 @@
FROM nginx:alpine
# Kopiere die Nginx-Konfiguration
COPY nginx/nginx.conf /etc/nginx/nginx.conf
# Kopiere die HTML-Datei, die xterm.js verwendet
COPY html/index.html /usr/share/nginx/html/index.html
# Setze die richtigen Berechtigungen für das HTML-Verzeichnis und die Datei
RUN chmod -R 755 /usr/share/nginx/html && chmod 644 /usr/share/nginx/html/index.html
# Exponiere Port 80 für den Nginx-Server
EXPOSE 80