From 9dd1972243aae2038e5def1631bb4bc1a86ed784 Mon Sep 17 00:00:00 2001 From: Sachin Naik <91499691+odttlnt@users.noreply.github.com> Date: Fri, 25 Mar 2022 14:01:10 -0400 Subject: [PATCH] Issue378 fix, change env-sample to correctly point to certificates in ssl folder Signed-off-by: Sachin Naik <91499691+odttlnt@users.noreply.github.com> --- cra-client/.env.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cra-client/.env.sample b/cra-client/.env.sample index 76bc0af0..28e453e7 100644 --- a/cra-client/.env.sample +++ b/cra-client/.env.sample @@ -7,6 +7,6 @@ # requires use of HTTPS protocol HTTPS=true # location of cert file in codebase, required to properly use HTTPS locally -SSL_CRT_FILE=../../ssl/keys/server.cert\ +SSL_CRT_FILE=../ssl/keys/server.cert # location of key file in codebase, required to properly use HTTPS locally -SSL_KEY_FILE=../../ssl/keys/server.key \ No newline at end of file +SSL_KEY_FILE=../ssl/keys/server.key \ No newline at end of file