]> git.wh0rd.org - tt-rss.git/blob - config.php-dist
initial mysql schema, db abstraction layer
[tt-rss.git] / config.php-dist
1 <?
2 // define(DB_CONN, "host=localhost dbname=fox user=fox password=XXXXXXXXXXX");
3 // DB connection string, PostgreSQL must be configured to accept connections
4 // via TCP/IP and authentified by password.
5
6 define(DB_TYPE, "pgsql");
7 define(DB_HOST, "localhost");
8 define(DB_USER, "fox");
9 define(DB_NAME, "fox");
10 define(DB_PASS, "XXXXXX");
11
12 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
13 // Local cache directory for RSS feeds
14
15 define(MIN_UPDATE_TIME, 1800);
16
17 define(WEB_DEMO_MODE, false);
18
19 define(ENABLE_FEED_ICONS, true);
20 define(ICONS_DIR, "icons");
21 define(ICONS_URL, "icons");
22
23 define(PURGE_OLD_DAYS, 30);
24 // Articles older than this number of days will be deleted automatically
25
26 define(UPDATE_POST_ON_CHECKSUM_CHANGE, true);
27
28 define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false);
29 // enable "Mark as read/unread" buttons in preferences dialog
30
31 ?>
32