default.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. # 数据库配置
  3. $config['database'] = array
  4. (
  5. # 默认数据库配置
  6. 'default' => array
  7. (
  8. 'type' => 'pdo',
  9. 'host' => array
  10. (
  11. 'read' => 'web-mysql:3306',
  12. 'update' => 'web-mysql:3306',
  13. ),
  14. 'database' => 'wonderful',
  15. 'username' => 'root',
  16. 'password' => '123456',
  17. 'charset' => 'utf8',
  18. ),
  19. );
  20. $config['debug'] = array
  21. (
  22. 'log' => array('type' => 'file'),
  23. );
  24. $local = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '192.168.33.10';
  25. $host = 'http://'.$local . '/';
  26. $upload = $host . 'upload/';
  27. $uploadcdn = $host . 'upload/data/';
  28. $config['host'] = array
  29. (
  30. 'upload'=> $upload . 'upload/?save',
  31. 'uploadRes' => $uploadcdn . 'upload/',
  32. 'project' => array
  33. (
  34. 'upload' => array
  35. (
  36. 'path' => $host. 'upload/upload/?',
  37. ),
  38. 'pay' => array
  39. (
  40. 'path' => $host. 'pay/pay/?',
  41. ),
  42. 'wechat_applet' => array
  43. (
  44. 'path' => $host. 'wechat/wechat_applet/?',
  45. ),
  46. ),
  47. );
  48. return $config;