5 lines
279 B
PHP
5 lines
279 B
PHP
<?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'] ?? '']);
|