feat: default nginx config

This commit is contained in:
Strix 2023-10-20 02:09:03 +02:00
parent ee4b9a6ee6
commit b9950596bb
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
6 changed files with 137 additions and 0 deletions

View file

@ -0,0 +1,12 @@
FROM nginx:alpine
RUN apk add \
certbot \
certbot-nginx
COPY content /usr/share/nginx/html
COPY conf.d /etc/nginx
COPY nginx.conf /etc/nginx/nginx.conf
COPY entrypoint.sh /entrypoint
ENTRYPOINT [ "sh", "/entrypoint" ]