igfs/bootstrap/secure.php

9 lines
253 B
PHP
Raw Normal View History

2024-10-23 16:16:47 +03:00
<?php
$secure_config = [
2024-12-16 14:26:13 +03:00
'web_auth_type' => 'email_code', // login_password, email_code
'token_type' => 'crypt', // random_bytes, md5, crypt, hash, JWT
2024-10-23 16:16:47 +03:00
'token_expired_time' => "+30 days", // +1 day
];
\kernel\App::$secure = $secure_config;