From 76ed7a736dd22c747d1a6330e0c766c7cc3cb596 Mon Sep 17 00:00:00 2001 From: Michael VanOverbeek Date: Sun, 31 Oct 2021 13:59:23 -0400 Subject: [PATCH] Change the server digest warning message --- ProjectLighthouse/Startup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ProjectLighthouse/Startup.cs b/ProjectLighthouse/Startup.cs index 6d0637a9..c122871f 100644 --- a/ProjectLighthouse/Startup.cs +++ b/ProjectLighthouse/Startup.cs @@ -45,7 +45,8 @@ namespace LBPUnion.ProjectLighthouse if (string.IsNullOrWhiteSpace(serverDigestKey)) { Logger.Log( - "SERVER_DIGEST_KEY environment variable wasn't set, so server digest headers won't be set. This will break LBP 1 and LBP 3." + "The SERVER_DIGEST_KEY environment variable wasn't set, so digest headers won't be set or verified. This will prevent LBP 1 and LBP 3 from working. " + + "To increase security, it is recommended that you find and set this variable." ); computeDigests = false; }