1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-sphinxql.git synced 2024-05-02 00:59:25 +03:00
kohana-sphinxql/config/sphinxql.php
2013-05-15 16:14:05 +02:00

35 lines
727 B
PHP
Executable file

<?php
/**
* This file is part of SphinxQL for Kohana.
*
* Copyright (c) 2010, Deoxxa Development
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return array(
'default' => array(
'servers' => array(
// Key => Value
//'<server a name>' => '<host>:<port>',
//'<server b name>' => '<host>:<port>',
// For example
//'sphinx_01' => '192.168.1.1:9301',
//'sphinx_02' => '192.168.1.2:9301',
//'sphinx_03' => '192.168.1.3:9301',
// ...or...
//'sphinx_first' => '192.168.1.1:1234',
//'sphinx_second' => '123.45.67.89:8765',
// ...or!
// 'my_only_server' => '127.0.0.1:9312',
),
),
);
?>