From c79f1426a0c4e71b6010956ec3abe3442b19ba75 Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Fri, 17 Jan 2025 10:29:34 +0100 Subject: [PATCH] preservo nginx.conf original --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b674883..a3c9373 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 +COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf # 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