From ac230d28487d387e922aa5469bf049429274167b Mon Sep 17 00:00:00 2001 From: Jake Kasper Date: Thu, 21 Aug 2025 10:09:25 -0500 Subject: [PATCH] healthcheck ip --- backend/healthcheck.js | 2 +- frontend/healthcheck.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/healthcheck.js b/backend/healthcheck.js index 5dbac6b..506aaad 100644 --- a/backend/healthcheck.js +++ b/backend/healthcheck.js @@ -3,7 +3,7 @@ const http = require('http'); console.log(`[${new Date().toISOString()}] Backend health check starting...`); const options = { - hostname: 'localhost', + hostname: '127.0.0.1', port: 5000, path: '/health', method: 'GET', diff --git a/frontend/healthcheck.js b/frontend/healthcheck.js index 385d430..baaced4 100644 --- a/frontend/healthcheck.js +++ b/frontend/healthcheck.js @@ -3,7 +3,7 @@ const http = require('http'); console.log(`[${new Date().toISOString()}] Frontend health check starting...`); const options = { - hostname: 'localhost', + hostname: '127.0.0.1', port: 3000, path: '/', method: 'GET',