[接口]鉴权authToken用户登录login-注册register-退出logout, 并将用户信息保存到redis中
This commit is contained in:
16
server/config/api.php
Normal file
16
server/config/api.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* API 鉴权与用户相关配置
|
||||
*/
|
||||
return [
|
||||
// auth-token 有效期(秒),默认 24 小时
|
||||
'auth_token_exp' => (int) env('API_AUTH_TOKEN_EXP', 86400),
|
||||
// user-token 有效期(秒),默认 7 天
|
||||
'user_token_exp' => (int) env('API_USER_TOKEN_EXP', 604800),
|
||||
// 用户信息 Redis 缓存过期时间(秒),默认 7 天
|
||||
'user_cache_expire' => (int) env('API_USER_CACHE_EXPIRE', 604800),
|
||||
// 用户缓存 Redis key 前缀
|
||||
'user_cache_prefix' => env('API_USER_CACHE_PREFIX', 'api:user:'),
|
||||
// 用户信息加密密钥(用于 Redis 中 value 的加密),建议 32 位
|
||||
'user_encrypt_key' => env('API_USER_ENCRYPT_KEY', 'dafuweng_api_user_cache_key_32'),
|
||||
];
|
||||
Reference in New Issue
Block a user