From 952bdc9832262794dbc510ccbf62e6fbb7ecc28a Mon Sep 17 00:00:00 2001 From: Purple Date: Sun, 18 Jan 2026 01:43:27 +0000 Subject: [PATCH] fix aws --- webapp/config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp/config.php b/webapp/config.php index 6bd9f51..67699cb 100644 --- a/webapp/config.php +++ b/webapp/config.php @@ -30,7 +30,8 @@ define('SESSION_TIMEOUT', 86400); // 24 hours // Admin emails (comma-separated list of emails that should have admin access) // Used with Cloudflare Access authentication -define('ADMIN_EMAILS', getenv('ADMIN_EMAILS') ?: ''); +// If env var not available, fallback to hardcoded list +define('ADMIN_EMAILS', getenv('ADMIN_EMAILS') ?: 'michael@purplecomputing.com,dn@purplecomputing.com,js@purplecomputing.com'); // IP Registry configuration define('IPREGISTRY_API_KEY', getenv('IPREGISTRY_API_KEY') ?: '');