From c47346df52e3cc295ae742874c8f0055656daf57 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Tue, 18 Mar 2025 00:46:35 -0400 Subject: [PATCH] fix: do not require authkey --- server/context/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/context/parser.ts b/server/context/parser.ts index 485078f..ddafb13 100644 --- a/server/context/parser.ts +++ b/server/context/parser.ts @@ -9,7 +9,7 @@ const serverConfig = type({ cookie_secret: '32 <= string <= 32', cookie_secure: stringToBool, agent: type({ - authkey: 'string', + authkey: 'string = ""', ttl: 'number.integer = 180000', // Default to 3 minutes cache_path: 'string = "/var/lib/headplane/agent_cache.json"', })