Option to disable linked URL indexing
[phinde.git] / data / config.php.dist
1 <?php
2 $GLOBALS['phinde'] = array(
3     'elasticsearch' => 'http://127.0.0.1:9200/phinde/',
4     //whitelist of domains that shall be crawled
5     'domains' => array(
6         'www.example.org',
7         'test.example.org'
8     ),
9     //list of URL beginnings that should be ignored
10     'blacklist' => array(
11         'http://bad.example.org/'
12     ),
13     //list of URLs that should be subscribed to with PubSubHubbub
14     'subscriptions' => array(
15         'http://www.example.org/feed',
16     ),
17     //time in seconds after which URLs may be re-indexed
18     'refreshtime' => 86400,
19     //if directly linked URLs shall be indexed, even if they are
20     // on a non-whitelisted domain
21     'indexNonAllowed' => true,
22 );
23 ?>