39401-vm/healthz.php
2026-03-30 17:47:50 +00:00

13 lines
294 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/includes/bootstrap.php';
header('Content-Type: application/json; charset=utf-8');
echo json_encode([
'status' => 'ok',
'app' => 'ServisIngat',
'time_utc' => gmdate('c'),
], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);