feat: default nginx config
This commit is contained in:
parent
ee4b9a6ee6
commit
b9950596bb
6 changed files with 137 additions and 0 deletions
12
servers/skel/docker-compose.d/custom/nginx/Dockerfile
Normal file
12
servers/skel/docker-compose.d/custom/nginx/Dockerfile
Normal 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" ]
|
Loading…
Add table
Add a link
Reference in a new issue