From 686103825e5bf8c33b92f7e36b22eb4701cc2356 Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Fri, 17 Jan 2025 08:12:01 +0100 Subject: [PATCH] =?UTF-8?q?Cambio=20ubicaci=C3=B3n=20de=20nginx.conf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a326231..b674883 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ USER 0 # install nginx RUN apt-get update && apt-get install nginx -y # copy our nginx configuration to overwrite nginx defaults -COPY ./nginx/nginx.conf /etc/nginx/conf.d +COPY ./nginx/nginx.conf /etc/nginx # link nginx logs to container stdout RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log