39519-vm/healthz.php
Flatlogic Bot edfa4d1aab first
2026-04-08 10:44:00 +00:00

12 lines
266 B
PHP

<?php
declare(strict_types=1);
header('Content-Type: application/json; charset=utf-8');
http_response_code(200);
echo json_encode([
'status' => 'ok',
'service' => 'portfolio-site',
'time' => gmdate('c'),
], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);