39348-vm/healthz.php
Flatlogic Bot c135e4db89 123
2026-03-27 16:57:36 +00:00

21 lines
494 B
PHP

<?php
declare(strict_types=1);
header('Content-Type: application/json');
try {
require_once __DIR__ . '/db/config.php';
db()->query('SELECT 1');
http_response_code(200);
echo json_encode([
'status' => 'ok',
'app' => 'NexusHR',
'time' => gmdate('c'),
], JSON_UNESCAPED_SLASHES);
} catch (Throwable $e) {
http_response_code(500);
echo json_encode([
'status' => 'error',
'time' => gmdate('c'),
], JSON_UNESCAPED_SLASHES);
}