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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
return [
'pass_salt' => '58&%97' ,
// jwt签名密钥
'jwt_secret_key' => '58&%97@*' ,
// jwt算法 , 可配置的值取决于使用的jwt包支持哪些算法
'jwt_algorithm' => 'HS256' ,
// 是否开启app接口签名认证, 为方便测试可以关闭, 正式环境必须开启
'app_sign_auth_on' => true ,
//app访问token有效期
'app_access_token_time' => 60 * 60 * 24 * 7 ,
//用户登录有效期
'user_login_time' => 60 * 60 * 24 * 7 ,
];