You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
805 B
23 lines
805 B
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | JWT签名专用配置文件
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
// JWT-TOKEN验证应用地址
|
|
'web' => [
|
|
'host' => 'base.ahbmz.com',
|
|
'expire_time' => '+1200 minute', //分钟 DateTimeImmutable
|
|
'expire_at' => 72000, //秒 //对应expire_time
|
|
'token_key' => 'K4Eya8bEbxmjzxcplUo8u3d',
|
|
'jti_nonce' => 'lwEinge4Ey8ExjxpU83klKlfeiao8L', //jwt jti
|
|
'expire_time_refresh' => 3600 * 24 * 7, //7天过期
|
|
],
|
|
//不需要jwt的控制器、方法直接返回
|
|
'filter_router' => [
|
|
'api/login/login',
|
|
'api/login/refreshtoken',
|
|
'api/login/captcha',
|
|
'api/UploadLog/add',
|
|
]
|
|
];
|
|
|