database.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 开源项目:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 数据库调试模式
  16. 'debug' => true,
  17. // 数据库类型
  18. 'type' => 'mysql',
  19. // 服务器地址
  20. 'hostname' => 'rm-2zerjb9933duy7ql7io.mysql.rds.aliyuncs.com',
  21. // 数据库名
  22. 'database' => 'wugeyu',
  23. // 用户名
  24. 'username' => 'wugeyu',
  25. // 密码
  26. 'password' => 'WYGhxb18612132121',
  27. // 编码
  28. 'charset' => 'utf8mb4',
  29. // 端口
  30. 'hostport' => '3306',
  31. // 主从
  32. 'deploy' => 0,
  33. // 分离
  34. 'rw_separate' => false,
  35. ];