From 30aba040de22ded4e650e56c7a254a493e8df9d5 Mon Sep 17 00:00:00 2001 From: Dylan Hillerbrand Date: Fri, 14 Jun 2024 08:25:57 -0400 Subject: [PATCH] fix(nginx): remove placeholder .htpasswd file --- nginx/Dockerfile | 2 +- nginx/password/.htpasswd | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 nginx/password/.htpasswd diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 20a0c1ed2..9da042fd3 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -7,4 +7,4 @@ RUN curl -LJO https://github.com/go-acme/lego/releases/download/v4.14.2/lego_v4. rm lego_v4.14.2_linux_amd64.tar.gz RUN mkdir -p /var/www/lego COPY error_pages /error_pages -COPY password/.htpasswd /etc/nginx/.htpasswd \ No newline at end of file +COPY password /etc/nginx \ No newline at end of file diff --git a/nginx/password/.htpasswd b/nginx/password/.htpasswd deleted file mode 100644 index 4453f326c..000000000 --- a/nginx/password/.htpasswd +++ /dev/null @@ -1 +0,0 @@ -# Note: This file is intentionally empty for development and production environments. It will be replaced with a file containing a hashed password on the staging server by ansible. \ No newline at end of file