From 9201c0d107a9d5150992c71e3659332020bd0b4d Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Mon, 16 Oct 2023 21:24:13 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cafc4f7..b88a522 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,7 @@ FROM nginx:latest -COPY /var/www/.well-known /usr/share/nginx/html/.well-known \ No newline at end of file +# Copy your .well-known files +COPY /var/www/.well-known /usr/share/nginx/html/.well-known + +# Replace the default NGINX configuration file with your custom configuration +COPY nginx.conf /etc/nginx/nginx.conf