default.php 835 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. ),
  39. );
  40. return $config;