Carpeta inicial añadida

This commit is contained in:
2026-03-16 12:08:04 -04:00
parent 157c93736c
commit f829e6a42f
35 changed files with 9396 additions and 197 deletions

18
nginx/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM nginx:1.18-alpine-perl
RUN apk add --no-cache nginx-mod-http-perl
RUN apk add --no-cache openssl
COPY nginx.conf /etc/nginx/nginx.conf
COPY default.conf /etc/nginx/conf.d/default.conf
COPY options-ssl-nginx.conf /etc/nginx/
COPY hsts.conf /etc/nginx/
RUN mkdir -p /customization
COPY blacklist.conf /customization/blacklist.conf
RUN mkdir -p /etc/symb_link_ssl
RUN mkdir -p /logs/nginx
COPY nginx.sh /customization/nginx.sh
RUN chmod +x /customization/nginx.sh
EXPOSE 80
CMD ["/customization/nginx.sh"]