]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
viewCurrentFeed() usage cleanup
[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
2aae0cce 18 define('MAGPIE_CACHE_DIR', 'cache/magpie');
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
AD
25 define('ICONS_DIR', "icons");
26 define('ICONS_URL', "icons");
56a2fd35 27 // Local and URL path to the directory, where feed favicons are stored.
15ea0691
AD
28 // Unless you really know what you're doing, please keep those relative
29 // to tt-rss main directory.
c8437f35 30
cce28758 31 define('SINGLE_USER_MODE', true);
8b2cbc33
AD
32 // Operate in single user mode, disables all functionality related to
33 // multiple users.
a47a3f82 34
7d7cbaf5
AD
35 define('TMP_DIRECTORY', '/tmp');
36 // Directory for temporary files
f5de0d8d 37
085a5a74 38 define('ENABLE_UPDATE_DAEMON', false);
b3295162
AD
39 // This enables different mechanism for user-triggered updates designed
40 // for update daemon running in background on the server.
085a5a74 41 // This option suggests FEEDS_FRAME_REFRESH set to a small value
b2620faa 42 // (like 60 seconds, depending on number of users and server/bandwidth load).
a561fe73 43
78ea1de0
AD
44 define('DAEMON_SLEEP_INTERVAL', 120);
45 // Interval between update daemon update runs
46
03f321db 47 define('DATABASE_BACKED_SESSIONS', false);
2ab29ac6 48 // Store session information in a database, recommended for multiuser
5854b016
AD
49 // configurations. Doesn't seem to work for everyone, so enable with caution.
50 // tt-rss uses default PHP session storing mechanism if disabled.
8fd92701 51
09018e95 52 define('SESSION_CHECK_ADDRESS', true);
916f788a 53 // Bind session to client IP address (recommended)
09018e95 54
377a3e8b 55 define('SESSION_COOKIE_LIFETIME', 0);
f7c390b8
AD
56 // Default lifetime of a session (e.g. login) cookie. In seconds,
57 // 0 means cookie will be deleted when browser closes.
898a9cdb
AD
58
59 define('SESSION_EXPIRE_TIME', 86400);
60 // Hard expiration limit for sessions. Should be
f7c390b8 61 // greater or equal to SESSION_COOKIE_LIFETIME
898a9cdb 62
5f2cd401 63 define('DAEMON_UPDATE_LOGIN_LIMIT', 0);
4bb6b8ea
AD
64 // Stop updating feeds of user who haven't logged in specified
65 // amount of days. 0 disables.
eed55fd3 66
b72c3ef8 67 define('CHECK_FOR_NEW_VERSION', true);
0ff6e252 68 // Check for new versions of tt-rss automatically.
b72c3ef8 69
3a7a4bbc 70 define('USE_CURL_FOR_ICONS', false);
c798704b
AD
71 // Fetch favicons using CURL, useful if your PHP has disabled remote fopen()
72
1ddba275 73 define('DIGEST_ENABLE', true);
31a53903
AD
74 // Global option to enable daily digests. Also toggles the ability of users
75 // to forward articles by email.
1ddba275 76
9cd7c995
AD
77 define('DIGEST_EMAIL_LIMIT', 10);
78 // The maximum amount of emails sent in one digest batch
79
99018440
AD
80 define('DAEMON_SENDS_DIGESTS', true);
81 // If update daemon and update_feeds should send digests
82 // Disable if you prefer querying special URL (see wiki)
83
0456176a
AD
84 define('ENABLE_TRANSLATIONS', true);
85 // Enable support for interface translations
cc17c205 86
8e54a21e
AD
87 define('MYSQL_CHARSET', 'UTF8');
88 // Connection charset for MySQL.
bddc9788 89
78a5c296
AD
90 define('DEFAULT_UPDATE_METHOD', 0);
91 // Which feed parsing library to use as default:
92 // 0 - Magpie
93 // 1 - SimplePie
9fdf7824 94
2aae0cce 95 define('SIMPLEPIE_CACHE_DIR', 'cache/simplepie');
c7d57b66
AD
96 // Cache directory for RSS feeds when using SimplePie
97
dab52d7b 98 define('SIMPLEPIE_CACHE_IMAGES', false);
bc0f0785
AD
99 // Allow caching feed images when using SimplePie, to bypass hotlink
100 // prevention and such at expense of local disk space and bandwidth.
101 // Note that you (or your users) also have to enable image caching
102 // in feed editor.
103
14073c0a
AD
104 define('COUNTERS_MAX_AGE', 365);
105 // Hard limit for unread counters calculation. Try tweaking this
106 // parameter to speed up tt-rss when having a huge number of articles
107 // in the database (better yet, enable purging!)
108
a8931123
AD
109 define('DIGEST_FROM_NAME', 'Tiny Tiny RSS');
110 define('DIGEST_FROM_ADDRESS', 'noreply@your.domain.dom');
1fb2d0d8
AD
111 // Name, address and subject for sending outgoing mail. This applies
112 // to password reset notifications, digest emails and any other mail.
113
163a295e 114 define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
1fb2d0d8 115 // Subject line for email digests
a8931123
AD
116
117 define('DIGEST_SMTP_HOST', '');
1fb2d0d8 118 // SMTP Host to send outgoing mail. Blank - use system MTA.
a8931123
AD
119
120 define('DIGEST_SMTP_LOGIN', '');
121 define('DIGEST_SMTP_PASSWORD', '');
122 // These two options enable SMTP authentication when sending
1fb2d0d8 123 // outgoing mail. Require DIGEST_SMTP_HOST.
a8931123 124
ae4ecd5d 125 define('DAEMON_FEED_LIMIT', 100);
d2bf48f9 126 // Limits the amount of feeds daemon (or a cronjob) updates on one run
ae4ecd5d 127
66917e70
AD
128 define('ALLOW_REMOTE_USER_AUTH', false);
129 // Set to 'true' if you trust your web server's REMOTE_USER
130 // environment variable to validate that the user is logged in. This
131 // option can be used to integrate tt-rss with Apache's external
132 // authentication modules.
133
2aae0cce 134 define('LOCK_DIRECTORY', 'lock');
cfa43e02
AD
135 // Directory for lockfiles, must be writable to the user you run
136 // daemon process or cronjobs under.
137
04fedbf5
AD
138 define('ENABLE_GZIP_OUTPUT', false);
139 // Selectively gzip output to improve wire performance. This requires
140 // PHP Zlib extension on the server.
141
64eb624c
AD
142 define('PHP_EXECUTABLE', '/usr/bin/php');
143 // Path to PHP executable
144
4f7956b3
AD
145 define('ENABLE_REGISTRATION', false);
146 // Allow users to register themselves. Please be vary that allowing
147 // random people to access your tt-rss installation is a security risk
148 // and potentially might lead to data loss or server exploit. Disabled
149 // by default.
150
151 define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
152 // Email address to send new user notifications to.
153
154 define('REG_MAX_USERS', 10);
155 // Maximum amount of users which will be allowed to register on this
156 // system. 0 - no limit.
157
63771c48
AD
158 define('FEEDBACK_URL', '');
159 // Displays an URL for users to provide feedback or comments regarding
160 // this instance of tt-rss. Can lead to a forum, contact email, etc.
161
3907ef71
AD
162 define('FORCE_ARTICLE_PURGE', 0);
163 // When this option is not 0, users ability to control feed purging
164 // intervals is disabled and all articles (which are not starred)
165 // older than this amount of days are purged.
166
78a5c296 167 define('CONFIG_VERSION', 19);
f2c43604 168 // Expected config version. Please update this option in config.php
fef8a1e4
AD
169 // if necessary (after migrating all new options from this file).
170
72932a75 171 // vim:ft=php
7d4c898a 172?>