Files
web-installer/letsencrypt_log.php
hael 2d14052d41
All checks were successful
continuous-integration/drone/push Build is passing
letsencrypt_log.php - show log
2025-03-12 00:43:15 +01:00

11 lines
229 B
PHP

<?php
include "functions.php";
$letsencrypt = check_letsencrypt();
if (!empty($letsencrypt[$_GET["domain"]])) {
echo "<pre>";
echo base64_decode($letsencrypt[$_GET["domain"]]["log"]);
echo "</pre>";
}
?>