letsencrypt_log.php - show log
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-12 00:43:15 +01:00
parent 7ae1328238
commit 2d14052d41

10
letsencrypt_log.php Normal file
View File

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