Clickhouse config.php

From Initech Technical Wiki
Revision as of 22:45, 18 October 2019 by Timprice (talk | contribs) (Created page with "This config file is needed by the clickhouse-cdr-import.php script. Customise it to your environment. <pre> <?php $clickhouse_config = [ 'host' => 'localhost', '...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This config file is needed by the clickhouse-cdr-import.php script. Customise it to your environment.

<?php
$clickhouse_config = [
    'host' => 'localhost',
    'port' => '8123',
    'username' => 'default',
    'password' => ''
];
?>