40151-vm/healthz/index.php
2026-05-29 06:25:15 +00:00

10 lines
240 B
PHP

<?php
header('Content-Type: application/json; charset=utf-8');
http_response_code(200);
echo json_encode([
'ok' => true,
'service' => 'landing-leads',
'time' => gmdate('c'),
'php' => PHP_VERSION,
], JSON_UNESCAPED_SLASHES);