feat: 0.0.1

This commit is contained in:
root
2026-02-24 18:13:11 +00:00
commit 8e2ed8b750
5 changed files with 109 additions and 0 deletions

10
nginx.Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:stable-alpine
ARG SERVER_NAME
ENV SERVER_NAME=${SERVER_NAME}
# Prepare nginx config with env variables
COPY nginx.conf /etc/nginx/nginx.conf
RUN envsubst '${SERVER_NAME}' < /etc/nginx/nginx.conf > /etc/nginx/nginx.conf.tmp && \
mv /etc/nginx/nginx.conf.tmp /etc/nginx/nginx.conf