admin.php 462 B

12345678910111213141516171819
  1. <?php
  2. return [
  3. //token 有效期
  4. 'token_exp' => 6, //6小时
  5. //token超时多久可自动续期(后台)
  6. 'token_valid_exp' => 30, //30分钟
  7. //token超时多久可自动续期(用户)
  8. 'user_token_valid_exp' => 60 * 24 * 7, //7天
  9. //登录验证码有效期
  10. 'captcha_exp' => 30, //30分钟
  11. 'admin_prefix' => 'admin',
  12. 'merchant_prefix' => 'merchant',
  13. 'api_admin_prefix' => 'sys',
  14. 'api_merchant_prefix' => 'mer'
  15. ];