synchronization
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2025-08-25 13:02:18 +08:00
commit f1ecb4ed07
37 changed files with 1644 additions and 0 deletions

13
gateway/Dockerfile-docker Normal file
View File

@@ -0,0 +1,13 @@
ARG IMAGENAME
FROM ${IMAGENAME}
ENV DOMAIN_NAME=default
EXPOSE 80 443
COPY ./ssl.conf.template /etc/nginx/conf.d/ssl.conf.template
VOLUME ["/etc/nginx/conf.d/cert/"]
CMD /bin/sh -c "envsubst '\$DOMAIN_NAME' < /etc/nginx/conf.d/ssl.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"