]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
report db error on connect
[tt-rss.git] / config.php-dist
CommitLineData
8af5db8f 1<?
648472a7 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.
648472a7
AD
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
a1a8a2be 12 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5 13 // Local cache directory for RSS feeds
f92db4f5 14
b0b4abcf 15 define(WEB_DEMO_MODE, false);
f92db4f5
AD
16
17 define(ENABLE_FEED_ICONS, true);
78800912
AD
18 define(ICONS_DIR, "icons");
19 define(ICONS_URL, "icons");
f92db4f5 20
c3a8d71a 21 define(PURGE_OLD_DAYS, 30);
f92db4f5
AD
22 // Articles older than this number of days will be deleted automatically
23
36bf7496 24 define(UPDATE_POST_ON_CHECKSUM_CHANGE, true);
f92db4f5
AD
25
26 define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false);
27 // enable "Mark as read/unread" buttons in preferences dialog
70830c87 28
8af5db8f
AD
29?>
30