23 lines
467 B
PHP
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',
|
|
);
|
|
?>
|