39773-vm/healthz.php
2026-04-22 14:26:14 +00:00

11 lines
271 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/includes/app.php';
app_boot();
header('Content-Type: application/json');
echo json_encode([
'status' => 'ok',
'time' => gmdate('c'),
'php' => PHP_VERSION,
], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);