|
<?php
|
|
|
|
return [
|
|
'private_key_path' => __DIR__ . '/../../private.key',
|
|
'public_key_path' => __DIR__ . '/../../public.key',
|
|
'encryption_key' => 'lkj7LKJ98y0897YJHjh6&%^',
|
|
'access_token_ttl' => 3600, // 1 hora
|
|
'refresh_token_ttl' => 86400 * 30, // 30 días
|
|
];
|
|
?>
|