From d4bdf189b70dd8b5ece818409e1f3d9ab5cca151 Mon Sep 17 00:00:00 2001 From: Tom Broughton Date: Mon, 30 Oct 2023 08:56:00 +0000 Subject: [PATCH] use the allowed ips --- app/server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/app.js b/app/server/app.js index 93e1081..58fe158 100644 --- a/app/server/app.js +++ b/app/server/app.js @@ -62,7 +62,7 @@ if(config.ipfilter.allowed_ips.length > 0){ ipFilter({ detectIp: clientIp, forbidden: 'You are not authorized to access this page.', - filter: allowlist_ips, + filter: config.ipfilter.allowlist_ips, }) ); }