]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
options to disable header/footer and to select more compact stylesheet (included...
[tt-rss.git] / config.php-dist
CommitLineData
8af5db8f 1<?
763f2268 2 // PostgreSQL must be configured to accept connections
f92db4f5 3 // via TCP/IP and authentified by password.
648472a7 4
763f2268 5 define(DB_TYPE, "pgsql"); // or mysql
648472a7
AD
6 define(DB_HOST, "localhost");
7 define(DB_USER, "fox");
8 define(DB_NAME, "fox");
9 define(DB_PASS, "XXXXXX");
10
a1a8a2be 11 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5 12 // Local cache directory for RSS feeds
f92db4f5 13
b0b4abcf 14 define(WEB_DEMO_MODE, false);
f92db4f5
AD
15
16 define(ENABLE_FEED_ICONS, true);
78800912
AD
17 define(ICONS_DIR, "icons");
18 define(ICONS_URL, "icons");
f92db4f5 19
c3a8d71a 20 define(PURGE_OLD_DAYS, 30);
f92db4f5
AD
21 // Articles older than this number of days will be deleted automatically
22
36bf7496 23 define(UPDATE_POST_ON_CHECKSUM_CHANGE, true);
f92db4f5
AD
24
25 define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false);
26 // enable "Mark as read/unread" buttons in preferences dialog
70830c87 27
7f4bd256 28 define(ENABLE_LABELS, false);
48f0adb0
AD
29 // experimental support for virtual feeds or labels based on user
30 // crafted SQL queries. This feature is highly experimental and
31 // at this point not user friendly. Use with caution.
32
d148926e
AD
33 define(MIN_UPDATE_INTERVAL, 30);
34 // min. interval between feed updates, minutes
da5d0d09
AD
35
36 define(DISPLAY_HEADER, true);
37 // enable/disable the display of the header graphic
38
39 define(DISPLAY_FOOTER, true);
40 // enable/disable the display of the footer
41
42 define(USE_COMPACT_STYLESHEET, false);
43 // use stylesheet with more compact layout (if combined with two previous
44 // options may improve UI on small screens)
45
8af5db8f
AD
46?>
47