From b38206438489c6fa3d8d6a382e8326aba39fad29 Mon Sep 17 00:00:00 2001 From: Kyle <3204236+DevKyleS@users.noreply.github.com> Date: Tue, 13 Sep 2022 21:52:32 -0600 Subject: [PATCH] Replace port env var in healthcheck.js --- extra/healthcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/healthcheck.js b/extra/healthcheck.js index 7c3a7eb4..3a766108 100644 --- a/extra/healthcheck.js +++ b/extra/healthcheck.js @@ -25,7 +25,7 @@ if (!hostname && !FBSD) { hostname = process.env.HOST; } -const port = parseInt(process.env.UPTIME_KUMA_PORT || process.env.PORT || 3001); +const port = parseInt(process.env.UPTIME_KUMA_SERVICE_PORT || process.env.PORT || 3001); let options = { host: hostname || "127.0.0.1",