Add support for modification date queries: "before:", "after:" and "date:"
[phinde.git] / data / config.php.dist
1 <?php
2 $GLOBALS['phinde'] = array(
3     'elasticsearch' => 'http://127.0.0.1:9200/phinde/',
4     'domains' => array(
5         'www.example.org',
6         'test.example.org'
7     ),
8     //list of URL beginnings that should be ignored
9     'blacklist' => array(
10         'http://bad.example.org/'
11     ),
12     //list of URLs that should be subscribed to with PubSubHubbub
13     'subscriptions' => array(
14         'http://www.example.org/feed',
15     ),
16     //time in seconds after which URLs may be re-indexed
17     'refreshtime' => 86400,
18 );
19 ?>