<?php // /health/ping.php // Tiny, cache-busting health check header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0'); header('Pragma: no-cache'); http_response_code(204); // No Content exit;