From 166419490a104f5ad7296e1de0c4587e50cde8a0 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Thu, 17 Oct 2019 16:12:19 -0600 Subject: [PATCH] fix filename typo --- build/entrypoint.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/entrypoint.sh b/build/entrypoint.sh index 7bbb4a2..355c9cb 100755 --- a/build/entrypoint.sh +++ b/build/entrypoint.sh @@ -34,8 +34,8 @@ if [ "$TLS13_ONLY" = FALSE ]; then # activate SSL test server block if it exists if [ -f "/etc/nginx/sites/05-test-secured.conf" ]; then - mv /etc/nginx/sites/05-test-secured.conf.disabled \ - /etc/nginx/sites/05-test-secured.conf + mv /etc/nginx/sites/05-test_secured.conf.disabled \ + /etc/nginx/sites/05-test_secured.conf fi fi elif [ "$TLS13_ONLY" = TRUE ]; then @@ -50,8 +50,8 @@ elif [ "$TLS13_ONLY" = TRUE ]; then # activate SSL test server block if it exists if [ -f "/etc/nginx/sites/05-test-secured.conf" ]; then - mv /etc/nginx/sites/05-test-secured.conf.disabled \ - /etc/nginx/sites/05-test-secured.conf + mv /etc/nginx/sites/05-test_secured.conf.disabled \ + /etc/nginx/sites/05-test_secured.conf fi fi fi