Files
html/api/ambre-logs.php
2026-04-21 23:20:02 +02:00

10 lines
241 B
PHP

<?php
header("Content-Type: text/plain");
$log = @shell_exec("tail -50 /var/log/php8.4-fpm.log 2>&1");
echo $log ?: "(no log)";
$log2 = @shell_exec("tail -20 /var/log/nginx/error.log 2>&1");
echo "
=== NGINX ===
";
echo $log2 ?: "(no log)";