1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/config/modules/search/config.php

30 lines
746 B
PHP

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Конфиг модуля "search"
*/
//define('SEARCH_ENTITY_PREFIX','');
//define('SEARCH_SPHINX_HOST','localhost');
//define('SEARCH_SPHINX_PORT','3312');
$config['entity_prefix'] = '';
$config['sphinx']['host'] = 'localhost';
$config['sphinx']['port'] = '9312';
return $config;
?>