34313-vm/healthz.php
Flatlogic Bot ce38f4a92c 01
2025-09-23 14:44:19 +00:00

8 lines
188 B
PHP

<?php
// Simple health check endpoint
header('Content-Type: application/json');
echo json_encode([
'status' => 'ok',
'timestamp' => date('c'),
'php_version' => phpversion()
]);