From 3ca05cbf1636ec617a34bb14e34ea91b04a00c6a Mon Sep 17 00:00:00 2001
From: bolkedebruin <bolkedebruin@users.noreply.github.com>
Date: Sun, 14 Aug 2022 20:21:55 +0200
Subject: [PATCH] Encryption keys need to be 32 characters

---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index f63bef3..1bad7d2 100644
--- a/README.md
+++ b/README.md
@@ -106,10 +106,11 @@ Client:
   # domain gets set in the rdp file and the domain name is stripped from the username
   SplitUserDomain: false
 Security:
-  # a random string of at least 32 characters to secure cookies on the client
+  # a random string of 32 characters to secure cookies on the client
   # make sure to share this amongst different pods
   PAATokenSigningKey: thisisasessionkeyreplacethisjetzt
   # PAATokenEncryptionKey: thisisasessionkeyreplacethisjetzt
+  # a random string of 32 characters to secure cookies on the client
   UserTokenEncryptionKey: thisisasessionkeyreplacethisjetzt
   # if you want to enable token generation for the user
   # if true the username will be set to a jwt with the username embedded into it
-- 
GitLab