Files
html/api/ambre-find-oss.php
2026-04-22 03:15:02 +02:00

10 lines
418 B
PHP

<?php
header("Content-Type: application/json");
$locations = @shell_exec("find /var/www /opt -name 'oss-registry*.json' 2>/dev/null | head -10");
$loc2 = @shell_exec("find /var/www /opt -name 'oss*manifest*.json' 2>/dev/null | head -10");
echo json_encode([
"oss_registry" => trim($locations),
"oss_manifest" => trim($loc2),
"opt_oss" => @shell_exec("ls /opt/oss/ 2>&1 | head -10"),
], JSON_PRETTY_PRINT);