localhost.php 753 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. return array
  3. (
  4. 'db' => array
  5. (
  6. 'type' => 'Pdo',
  7. 'host' => 'web-mysql',
  8. 'port' => '3306',
  9. 'name' => DEVER_PROJECT,
  10. 'user' => 'root',
  11. 'pwd' => '123456',
  12. ),
  13. 'log' => array
  14. (
  15. /*
  16. 'type' => 'Pdo',
  17. 'pdo_type' => 'influxdb',
  18. 'host' => 'web-influx',
  19. 'port' => '8086',
  20. 'name' => 'api',
  21. 'user' => 'rabin',
  22. 'pwd' => 'ilyxddfe521',
  23. */
  24. 'type' => 'Influxdb',
  25. 'host' => 'http://web-influx:8086',
  26. 'token' => 'w2u7KOsNxtaYBLb0EOmMpeZ4AvrDcZtpSbqcIrrO0WkQjhpQNmMm_B4WQeJtb6GpfrohOPA-SxaI0FmBSkYHhg==',
  27. 'name' => DEVER_PROJECT,
  28. 'user' => 'shemic',
  29. 'precision' => 's',
  30. ),
  31. );