This commit is contained in:
Lizandro Guarnizo
2026-01-21 23:55:49 -05:00
parent a70b8f36b5
commit ee016d62f5
5 changed files with 200 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
<?php
if (php_sapi_name() !== 'cli') header('Content-Type: application/json; charset=utf-8');
if (function_exists('writeLog')) writeLog('DEBUG','Health check called', ['uri' => $_SERVER['REQUEST_URI'] ?? '']);
echo json_encode(['ok'=>true,'uri'=>$_SERVER['REQUEST_URI'] ?? '']);