initial commit

This commit is contained in:
2025-10-12 18:41:02 +02:00
commit 75347648bc
6 changed files with 107 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
#FROM nginx
#COPY static-html-directory /usr/share/nginx/html
FROM nginx:stable-alpine
# Copy static site (optional, if you want to serve anything at / directly)
COPY static-html-directory /usr/share/nginx/html
# Replace all default confs with ours
COPY nginx-conf/default.conf /etc/nginx/conf.d/default.conf