add log class
[phinde.git] / data / config.php.dist
1 <?php
2 $GLOBALS['phinde'] = array(
3     //name of the app in the frontend
4     'apptitle' => 'website search',
5     'elasticsearch' => 'http://127.0.0.1:9200/phinde/',
6     //whitelist of domains that shall be crawled
7     'domains' => array(
8         'www.example.org',
9         'test.example.org'
10     ),
11     //list of URL beginnings that should be ignored
12     'blacklist' => array(
13         'http://bad.example.org/'
14     ),
15     //list of regexes for URLs that should not be crawled
16     'crawlBlacklist' => array(
17     ),
18     //list of URLs that should be subscribed to with PubSubHubbub
19     'subscriptions' => array(
20         'http://www.example.org/feed',
21     ),
22     //verbose output
23     'debug' => true,
24     //time in seconds after which URLs may be re-indexed
25     'refreshtime' => 86400,
26     //if directly linked URLs shall be indexed, even if they are
27     // on a non-whitelisted domain
28     'indexNonAllowed' => true,
29     //prefix for the gearman queue names, needed when multiple instances
30     //are running in parallel
31     'queuePrefix' => '',
32     //show the full text content in the results
33     // useful for chat logs in which every line is its own document
34     'showFullContent' => false,
35     //search result "hit" template file
36     'hitTemplate' => 'hit.htm',
37 );
38 ?>