]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
database backed sessions
[tt-rss.git] / config.php-dist
CommitLineData
8af5db8f 1<?
8b2cbc33 2 // Your RDBMS must be configured to accept connections
f92db4f5 3 // via TCP/IP and authentified by password.
648472a7 4
cce28758
AD
5 define('DB_TYPE', "pgsql"); // or mysql
6 define('DB_HOST', "localhost");
7 define('DB_USER', "fox");
8 define('DB_NAME', "fox");
9 define('DB_PASS', "XXXXXX");
648472a7 10
a1a8a2be 11 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5 12 // Local cache directory for RSS feeds
f92db4f5 13
cce28758 14 define('WEB_DEMO_MODE', false);
8b2cbc33 15 // Demo mode with reduced functionality.
7a991cac 16
cce28758
AD
17 define('ICONS_DIR', "icons");
18 define('ICONS_URL', "icons");
56a2fd35 19 // Local and URL path to the directory, where feed favicons are stored.
c8437f35 20
cce28758 21 define('USE_HTTP_AUTH', false);
8b2cbc33 22 // Use HTTP Basic authentication instead of login form. Has some problems.
8af5db8f 23
cce28758 24 define('SINGLE_USER_MODE', true);
8b2cbc33
AD
25 // Operate in single user mode, disables all functionality related to
26 // multiple users.
30a49c92 27
cce28758 28 define('DAEMON_REFRESH_ONLY', false);
30a49c92 29 // updates to all feeds will only run when the backend script is
0d436179
AD
30 // invoked with a "daemon" option on the URI stem. This is useful when you
31 // are hosting multi-user system and want to control how often
32 // feeds are being updated.
33
34 // An example wget command line below will invoke an update every 30
35 // minutes, with output being sent to /dev/null and the timeout set to
36 // 10 minutes so that wget does not time out. Substitute your site name
37 // and tt-rss path as necessary.
30a49c92 38 //
0d436179 39 // */30 * * * * /usr/bin/wget -O /dev/null -T 600 "http://www.your-site.xxx/tt-rss/backend.php?op=globalUpdateFeeds&daemon=1"
30a49c92
AD
40 //
41
1f2b01ed 42 // The alternative approach is to run update_feeds.php from your crontab
a47a3f82
AD
43 // with command line PHP interpreter. Don't forget to chdir() into TT-RSS
44 // directory or it won't be able to find includes. E.g.
45 //
46 // */30 * * * * cd $TTRSS_DIRECTORY && ./update_feeds.php >/dev/null 2>&1
b3295162
AD
47
48 // Another alternative approach is to run update_daemon.php in the background
49 // on the server, which allows user-scheduled updates and continous
50 // feed updating in the background. This is the recommended way at the moment.
a47a3f82 51
c3d74dca 52 define('SMART_RPC_COUNTERS', false);
bbc92e50
AD
53 // If enabled, stores feed counter information on the server side and sends
54 // only diffs to the client. In the nutshell, it saves your bandwidth and
c3d74dca
AD
55 // makes UI more responsive, but eats server memory.
56 // This option can introduce a lot of weird interface glitches in
57 // some use-cases (if you have more than one tt-rss window open, for example)
58 // so it is disabled by default.
bbc92e50 59
65cd0f74 60 define('GLOBAL_ENABLE_LABELS', false);
cfaba6df
AD
61 // Labels are a security risk, so this option can globally disable them for all users.
62
75836f33
AD
63 define('ENABLE_LOGIN_SSL', false);
64 // Redirect to SSL url for login
65
72932a75
AD
66 define('MAIL_RESET_PASS', true);
67 // Send mail to user on password reset
68
69 define('MAIL_FROM', 'TT-RSS Daemon <noreply@ttrss.your-shiny-host.org>');
70 // Pretty obvious, I suppose.
e2f728be
AD
71
72 define('ENABLE_FEED_BROWSER', true);
73 // Enable or disable local feed browser
7d7cbaf5
AD
74
75 define('TMP_DIRECTORY', '/tmp');
76 // Directory for temporary files
f5de0d8d
AD
77
78 define('FEEDS_FRAME_REFRESH', 600);
79 // Auto refresh interval for feeds frame (in seconds)
cbd8650d
AD
80
81 define('MAX_UPDATE_TIME', 0);
82 // Limit one update sequence run to this number of seconds.
83 // The valiue is not exact, because it is being checked between feed updates,
84 // which could use abritrary amount of time. Feeds which could not be updated
85 // in time, are being skipped.
86 // If this option is enabled (non-zero) feeds are updated in random order.
87 // It is also recommended to set FEEDS_FRAME_REFRESH to a lower value if using
88 // this option.
de696427 89
085a5a74 90 define('ENABLE_UPDATE_DAEMON', false);
b3295162
AD
91 // This enables different mechanism for user-triggered updates designed
92 // for update daemon running in background on the server.
93
085a5a74 94 // This option suggests FEEDS_FRAME_REFRESH set to a small value
b2620faa 95 // (like 60 seconds, depending on number of users and server/bandwidth load).
a561fe73
AD
96
97 define('DISABLE_SESSIONS', false);
98 // Never enable this option (kludge for daemon using tt-rss code)
99
78ea1de0
AD
100 define('DAEMON_SLEEP_INTERVAL', 120);
101 // Interval between update daemon update runs
102
72932a75 103 // vim:ft=php
7d4c898a 104?>