]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
iframify main interface, numerous javascript cleanups
[tt-rss.git] / config.php-dist
CommitLineData
8af5db8f
AD
1<?
2 define(DB_CONN, "host=localhost dbname=fox user=fox password=XXXXXXXXXXX");
f92db4f5
AD
3 // DB connection string, PostgreSQL must be configured to accept connections
4 // via TCP/IP and authentified by password.
5
a1a8a2be 6 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5
AD
7 // Local cache directory for RSS feeds
8
9 define(HEADLINES_PER_PAGE, 15);
9d9c9dd6 10 define(MIN_UPDATE_TIME, 1800);
f92db4f5 11
b0b4abcf 12 define(WEB_DEMO_MODE, false);
f92db4f5
AD
13
14 define(ENABLE_FEED_ICONS, true);
78800912
AD
15 define(ICONS_DIR, "icons");
16 define(ICONS_URL, "icons");
f92db4f5 17
c3a8d71a 18 define(PURGE_OLD_DAYS, 30);
f92db4f5
AD
19 // Articles older than this number of days will be deleted automatically
20
36bf7496 21 define(UPDATE_POST_ON_CHECKSUM_CHANGE, true);
f92db4f5
AD
22
23 define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false);
24 // enable "Mark as read/unread" buttons in preferences dialog
70830c87 25
8af5db8f
AD
26?>
27