default.php 850 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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'] : '0.0.0.0';
  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. /*
  35. 'passport' => array
  36. (
  37. 'path' => $host. 'user/passport/?',
  38. ),
  39. */
  40. ),
  41. );
  42. return $config;