add gen_crl.php for cron based crl updates

This commit is contained in:
John Crisp
2020-02-24 15:38:00 +01:00
parent 62e864e8fa
commit 3ffc28d4f9

14
gen_crl.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
/* Generate CRLs from cron
* Add a link to your cron to automagically update the CRL
*/
include('../html/config.php');
include(STORE_DIR.'/config/config.php');
include('../html/include/my_functions.php');
include('../html/include/common.php') ;
include('../html/include/openssl_functions.php') ;
CA_generate_crl();
?>