From 212138b0176f0aa9d2cd5be054d587245049a1aa Mon Sep 17 00:00:00 2001 From: James Salter Date: Tue, 28 Sep 2021 13:24:44 +0100 Subject: [PATCH] Fix path --- Dockerfile | 2 +- nginx/{config.d => conf.d}/default.conf | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nginx/{config.d => conf.d}/default.conf (100%) diff --git a/Dockerfile b/Dockerfile index 6032156d6c..601f2cdbbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ COPY --from=builder /src/webapp /app RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types # Override default nginx config -COPY /nginx/config.d/default.conf /etc/nginx/config.d/default.conf +COPY /nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf RUN rm -rf /usr/share/nginx/html \ && ln -s /app /usr/share/nginx/html diff --git a/nginx/config.d/default.conf b/nginx/conf.d/default.conf similarity index 100% rename from nginx/config.d/default.conf rename to nginx/conf.d/default.conf