healthcheck ip

This commit is contained in:
Jake Kasper
2025-08-21 10:09:25 -05:00
parent be5729294b
commit ac230d2848
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ const http = require('http');
console.log(`[${new Date().toISOString()}] Backend health check starting...`); console.log(`[${new Date().toISOString()}] Backend health check starting...`);
const options = { const options = {
hostname: 'localhost', hostname: '127.0.0.1',
port: 5000, port: 5000,
path: '/health', path: '/health',
method: 'GET', method: 'GET',

View File

@@ -3,7 +3,7 @@ const http = require('http');
console.log(`[${new Date().toISOString()}] Frontend health check starting...`); console.log(`[${new Date().toISOString()}] Frontend health check starting...`);
const options = { const options = {
hostname: 'localhost', hostname: '127.0.0.1',
port: 3000, port: 3000,
path: '/', path: '/',
method: 'GET', method: 'GET',