From 41297cfb0f003a1f59f87c0fbfe05fe82c8ac9ee Mon Sep 17 00:00:00 2001 From: richard-churchman Date: Sat, 4 May 2024 20:32:59 +0200 Subject: [PATCH] Changed example JWTKey Environment Variable in documentation to ensure the default matches the constraint in startup. --- README.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d093606..a552f5f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ git clone https://github.com/jube-home/jube.git cd jube/Jube.App export ConnectionString="Host=;Port=;Database=;Username=;Password=;Pooling=true;Minimum Pool Size=0;Maximum Pool Size=100;SSL Mode=Require;Trust Server Certificate=true;" export ASPNETCORE_URLS="https://localhost:5001" -export JWTKey="ReplaceWithAVeryStrongKeyToSecureTheJWTAuthenticationToken" +export JWTKey="IMPORTANT:_ChangeThisKey_~%pvif3KRo!3Mk|1oMC50TvAPi%{mUt<9"B&|>DP|GZy"YYWeVrNUqLQE}mz{L_UsingThisKeyIsDangerous" dotnet run ``` diff --git a/docs/index.md b/docs/index.md index ff7393b..1158095 100644 --- a/docs/index.md +++ b/docs/index.md @@ -40,7 +40,7 @@ git clone https://github.com/jube-home/jube.git cd jube/Jube.App export ConnectionString="Host=;Port=;Database=;Username=;Password=;Pooling=true;Minimum Pool Size=0;Maximum Pool Size=100;SSL Mode=Require;Trust Server Certificate=true;" export ASPNETCORE_URLS="https://localhost:5001" -export JWTKey="ReplaceWithAVeryStrongKeyToSecureTheJWTAuthenticationToken" +export JWTKey="IMPORTANT:_ChangeThisKey_~%pvif3KRo!3Mk|1oMC50TvAPi%{mUt<9"B&|>DP|GZy"YYWeVrNUqLQE}mz{L_UsingThisKeyIsDangerous" dotnet run ```