]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
multiple feed editor: fix bug due to removal of hidden parameter
[tt-rss.git] / config.php-dist
CommitLineData
20862e58 1<?php
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");
befc807f 10 //define('DB_PORT', '5432'); // when neeeded, PG-only
648472a7 11
baef3dfe
AD
12 define('MAGPIE_FETCH_TIME_OUT', 60);
13 // Magpie's default timeout is 5 seconds. Some RSS feeds,
14 // such as from large Trac installs, can take significantly
15 // longer than 5 seconds to generate. To prevent failed
16 // updates, increase this.
17
a1a8a2be 18 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5 19 // Local cache directory for RSS feeds
7c5a308d 20
8cb4f762
AD
21 define('MAGPIE_CACHE_AGE', 60*30);
22 // How long to store cached RSS objects? In seconds.
23 // Defaults to 30 minutes
24
cce28758 25 define('WEB_DEMO_MODE', false);
8b2cbc33 26 // Demo mode with reduced functionality.
13528002
AD
27 // Warning: this option is obsolete. Don't rely on it being
28 // checked in all necessary places.
7a991cac 29
cce28758
AD
30 define('ICONS_DIR', "icons");
31 define('ICONS_URL', "icons");
56a2fd35 32 // Local and URL path to the directory, where feed favicons are stored.
15ea0691
AD
33 // Unless you really know what you're doing, please keep those relative
34 // to tt-rss main directory.
c8437f35 35
cce28758 36 define('SINGLE_USER_MODE', true);
8b2cbc33
AD
37 // Operate in single user mode, disables all functionality related to
38 // multiple users.
a47a3f82 39
e2f728be
AD
40 define('ENABLE_FEED_BROWSER', true);
41 // Enable or disable local feed browser
7d7cbaf5
AD
42
43 define('TMP_DIRECTORY', '/tmp');
44 // Directory for temporary files
f5de0d8d
AD
45
46 define('FEEDS_FRAME_REFRESH', 600);
47 // Auto refresh interval for feeds frame (in seconds)
cbd8650d
AD
48
49 define('MAX_UPDATE_TIME', 0);
50 // Limit one update sequence run to this number of seconds.
51 // The valiue is not exact, because it is being checked between feed updates,
52 // which could use abritrary amount of time. Feeds which could not be updated
53 // in time, are being skipped.
54 // If this option is enabled (non-zero) feeds are updated in random order.
55 // It is also recommended to set FEEDS_FRAME_REFRESH to a lower value if using
56 // this option.
de696427 57
085a5a74 58 define('ENABLE_UPDATE_DAEMON', false);
b3295162
AD
59 // This enables different mechanism for user-triggered updates designed
60 // for update daemon running in background on the server.
085a5a74 61 // This option suggests FEEDS_FRAME_REFRESH set to a small value
b2620faa 62 // (like 60 seconds, depending on number of users and server/bandwidth load).
a561fe73 63
78ea1de0
AD
64 define('DAEMON_SLEEP_INTERVAL', 120);
65 // Interval between update daemon update runs
66
03f321db 67 define('DATABASE_BACKED_SESSIONS', false);
2ab29ac6 68 // Store session information in a database, recommended for multiuser
5854b016
AD
69 // configurations. Doesn't seem to work for everyone, so enable with caution.
70 // tt-rss uses default PHP session storing mechanism if disabled.
8fd92701 71
09018e95 72 define('SESSION_CHECK_ADDRESS', true);
916f788a 73 // Bind session to client IP address (recommended)
09018e95 74
377a3e8b 75 define('SESSION_COOKIE_LIFETIME', 0);
f7c390b8
AD
76 // Default lifetime of a session (e.g. login) cookie. In seconds,
77 // 0 means cookie will be deleted when browser closes.
898a9cdb
AD
78
79 define('SESSION_EXPIRE_TIME', 86400);
80 // Hard expiration limit for sessions. Should be
f7c390b8 81 // greater or equal to SESSION_COOKIE_LIFETIME
898a9cdb 82
5f2cd401 83 define('DAEMON_UPDATE_LOGIN_LIMIT', 0);
eed55fd3
AD
84 // Stop updating feeds of user who was never logged in
85 // in specified amount of days. 0 disables.
86
b72c3ef8
AD
87 define('CHECK_FOR_NEW_VERSION', true);
88 // Check for new versions of tt-rss when entering preferences.
89
3a7a4bbc 90 define('USE_CURL_FOR_ICONS', false);
c798704b
AD
91 // Fetch favicons using CURL, useful if your PHP has disabled remote fopen()
92
1ddba275
AD
93 define('DIGEST_ENABLE', true);
94 // Global option to enable daily digests
95
9cd7c995
AD
96 define('DIGEST_EMAIL_LIMIT', 10);
97 // The maximum amount of emails sent in one digest batch
98
99018440
AD
99 define('DAEMON_SENDS_DIGESTS', true);
100 // If update daemon and update_feeds should send digests
101 // Disable if you prefer querying special URL (see wiki)
102
cc17c205
AD
103 define('ENABLE_TRANSLATIONS', false);
104 // Enable experimental support for interface translations
105 // based on PHP-Gettext. This is of no much use right now.
106
bddc9788
AD
107 define('MYSQL_CHARSET', '');
108 // Connection charset for MySQL. Only enable if having charset-related
109 // errors with MySQL (mangled characters, errors when updating feeds, etc).
110
9fdf7824 111 define('ENABLE_SIMPLEPIE', false);
87b44f5c
AD
112 // Enables SimplePie RSS parsing library (experimental). When this option
113 // is disabled, Tiny Tiny RSS defaults to Magpie library.
9fdf7824 114
87b44f5c
AD
115 // SimplePie is somewhat faster, more robust and less clunky as Magpie.
116 // While it doesn't internally support HTTP Digest authentication
117 // (required for Livejournal protected feeds and such) and SSL, it can
118 // support it when using CURL.
119
120 // To summarize, if your PHP has CURL extension or you aren't subscribed
121 // to any feeds using HTTP Digest authentication and Magpie XML parsing
122 // errors are bothering you too much, you can try enabling SimplePie.
9fdf7824 123
c7d57b66
AD
124 define('SIMPLEPIE_CACHE_DIR', '/var/tmp/simplepie-ttrss-cache');
125 // Cache directory for RSS feeds when using SimplePie
126
dab52d7b 127 define('SIMPLEPIE_CACHE_IMAGES', false);
bc0f0785
AD
128 // Allow caching feed images when using SimplePie, to bypass hotlink
129 // prevention and such at expense of local disk space and bandwidth.
130 // Note that you (or your users) also have to enable image caching
131 // in feed editor.
132
14073c0a
AD
133 define('COUNTERS_MAX_AGE', 365);
134 // Hard limit for unread counters calculation. Try tweaking this
135 // parameter to speed up tt-rss when having a huge number of articles
136 // in the database (better yet, enable purging!)
137
a8931123
AD
138 define('DIGEST_FROM_NAME', 'Tiny Tiny RSS');
139 define('DIGEST_FROM_ADDRESS', 'noreply@your.domain.dom');
1fb2d0d8
AD
140 // Name, address and subject for sending outgoing mail. This applies
141 // to password reset notifications, digest emails and any other mail.
142
163a295e 143 define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
1fb2d0d8 144 // Subject line for email digests
a8931123
AD
145
146 define('DIGEST_SMTP_HOST', '');
1fb2d0d8 147 // SMTP Host to send outgoing mail. Blank - use system MTA.
a8931123
AD
148
149 define('DIGEST_SMTP_LOGIN', '');
150 define('DIGEST_SMTP_PASSWORD', '');
151 // These two options enable SMTP authentication when sending
1fb2d0d8 152 // outgoing mail. Require DIGEST_SMTP_HOST.
a8931123 153
ae4ecd5d 154 define('DAEMON_FEED_LIMIT', 100);
d2bf48f9 155 // Limits the amount of feeds daemon (or a cronjob) updates on one run
ae4ecd5d 156
66917e70
AD
157 define('ALLOW_REMOTE_USER_AUTH', false);
158 // Set to 'true' if you trust your web server's REMOTE_USER
159 // environment variable to validate that the user is logged in. This
160 // option can be used to integrate tt-rss with Apache's external
161 // authentication modules.
162
cfa43e02
AD
163 define('LOCK_DIRECTORY', '.');
164 // Directory for lockfiles, must be writable to the user you run
165 // daemon process or cronjobs under.
166
a47fa017 167 define('ALLOW_SELECT_UPDATE_METHOD', true);
34459667
AD
168 // Allow users to select the library to update feeds with - e.g.
169 // Magpie or SimplePie
170
04fedbf5
AD
171 define('ENABLE_GZIP_OUTPUT', false);
172 // Selectively gzip output to improve wire performance. This requires
173 // PHP Zlib extension on the server.
174
64eb624c
AD
175 define('PHP_EXECUTABLE', '/usr/bin/php');
176 // Path to PHP executable
177
4f7956b3
AD
178 define('ENABLE_REGISTRATION', false);
179 // Allow users to register themselves. Please be vary that allowing
180 // random people to access your tt-rss installation is a security risk
181 // and potentially might lead to data loss or server exploit. Disabled
182 // by default.
183
184 define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
185 // Email address to send new user notifications to.
186
187 define('REG_MAX_USERS', 10);
188 // Maximum amount of users which will be allowed to register on this
189 // system. 0 - no limit.
190
63771c48
AD
191 define('FEEDBACK_URL', '');
192 // Displays an URL for users to provide feedback or comments regarding
193 // this instance of tt-rss. Can lead to a forum, contact email, etc.
194
3907ef71
AD
195 define('FORCE_ARTICLE_PURGE', 0);
196 // When this option is not 0, users ability to control feed purging
197 // intervals is disabled and all articles (which are not starred)
198 // older than this amount of days are purged.
199
bd6576f8 200 define('CONFIG_VERSION', 18);
f2c43604 201 // Expected config version. Please update this option in config.php
fef8a1e4
AD
202 // if necessary (after migrating all new options from this file).
203
72932a75 204 // vim:ft=php
7d4c898a 205?>