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