X-Git-Url: https://git.rapsys.eu/acme/blobdiff_plain/d86f129bc005638214a307ed7247f471a8b8db59..e7ce060377a23cc5761cde40011fad6689fd79e1:/www/acme-challenge.php diff --git a/www/acme-challenge.php b/www/acme-challenge.php new file mode 100644 index 0000000..c41a3d5 --- /dev/null +++ b/www/acme-challenge.php @@ -0,0 +1,22 @@ +thumbprint) || ($thumbprint = file_get_contents($config->thumbprint)) === false || + //Handle get key parsing + empty($_GET['key']) || !preg_match('/^[-_a-zA-Z0-9]+$/', $_GET['key']) +) { + header((!empty($_SERVER['SERVER_PROTOCOL'])?$_SERVER['SERVER_PROTOCOL']:'HTTP/1.0').' 404 Not Found'); + exit; +} + +//Send plain text header +header('Content-Type: text/plain'); + +//Display key.thumbprint couple +echo $_GET['key'].$thumbprint;