1234567891011121314151617181920212223242526272829303132 |
- <?php
- return array
- (
- 'db' => array
- (
- 'type' => 'Pdo',
- 'host' => 'web-mysql',
- 'port' => '3306',
- 'name' => DEVER_PROJECT,
- 'user' => 'root',
- 'pwd' => '123456',
- ),
- 'log' => array
- (
- /*
- 'type' => 'Pdo',
- 'pdo_type' => 'influxdb',
- 'host' => 'web-influx',
- 'port' => '8086',
- 'name' => 'api',
- 'user' => 'rabin',
- 'pwd' => 'ilyxddfe521',
- */
- 'type' => 'Influxdb',
- 'host' => 'http://web-influx:8086',
- 'token' => 'w2u7KOsNxtaYBLb0EOmMpeZ4AvrDcZtpSbqcIrrO0WkQjhpQNmMm_B4WQeJtb6GpfrohOPA-SxaI0FmBSkYHhg==',
- 'name' => 'api',
- 'user' => 'shemic',
- 'precision' => 's',
- ),
- );
|