initial commit

This commit is contained in:
2026-01-26 14:19:24 +01:00
commit f332d62f8a
8 changed files with 538 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM nginx:1.29-alpine
# Remove default config
RUN rm /etc/nginx/conf.d/default.conf
# Copy nginx main config
COPY docker/nginx.conf /etc/nginx/nginx.conf
# Copy virtual host template
COPY docker/default.conf.template /etc/nginx/templates/default.conf.template
# Copy static website
COPY . /usr/share/nginx/html
# Expose HTTP port
EXPOSE 80
# Nginx supports envsubst natively in /etc/nginx/templates
CMD ["nginx", "-g", "daemon off;"]