This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
tsmac/modules/ssl/config/ssl.php
2014-10-08 23:17:00 +11:00

23 lines
467 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* SSL Config Items
*
* @package SSL
* @category Configuration
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
return array(
// Days before certificates can be renewed.
'min_renew_days' => 7,
// Min password length for exports
'minpass_length' => 0,
// Location to openssl config
'config' => 'openssl.cnf',
);
?>