]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
add a dropdown button action to save and exit prefs (closes #660)
[tt-rss.git] / config.php-dist
CommitLineData
20862e58 1<?php
09e8bdfd
AD
2 // *******************************************
3 // *** Database configuration (important!) ***
4 // *******************************************
5
cce28758
AD
6 define('DB_TYPE', "pgsql"); // or mysql
7 define('DB_HOST', "localhost");
8 define('DB_USER', "fox");
9 define('DB_NAME', "fox");
10 define('DB_PASS', "XXXXXX");
befc807f 11 //define('DB_PORT', '5432'); // when neeeded, PG-only
648472a7 12
09e8bdfd
AD
13 define('MYSQL_CHARSET', 'UTF8');
14 // Connection charset for MySQL. If you have a legacy database and/or experience
15 // garbage unicode characters with this option, try setting it to a blank string.
16
17 // ***********************************
18 // *** Basic settings (important!) ***
19 // ***********************************
20
edfab7bd
AD
21 define('SELF_URL_PATH', 'http://yourserver/tt-rss/');
22 // Full URL of your tt-rss installation. This should be set to the
23 // location of tt-rss directory, e.g. http://yourserver/tt-rss/
24 // You need to set this option correctly otherwise several features
25 // including PUSH, bookmarklets and browser integration will not work properly.
ed102aa0 26
09e8bdfd 27 define('SINGLE_USER_MODE', false);
61e420e9
AD
28 // Operate in single user mode, disables all functionality related to
29 // multiple users.
09e8bdfd 30
6b1a4ecd
AD
31 define('SIMPLE_UPDATE_MODE', false);
32 // Enables fallback update mode where tt-rss tries to update feeds in
6eb77a31
AD
33 // background while tt-rss is open in your browser.
34 // If you don't have a lot of feeds and don't want to or can't run
35 // background processes while not running tt-rss, this method is generally
36 // viable to keep your feeds up to date.
37 // Still, there are more robust (and recommended) updating methods
38 // available, you can read about them here: http://tt-rss.org/wiki/UpdatingFeeds
6b1a4ecd 39
09e8bdfd
AD
40 // *****************************
41 // *** Files and directories ***
42 // *****************************
43
44 define('PHP_EXECUTABLE', '/usr/bin/php');
45 // Path to PHP executable, used for various command-line tt-rss programs
46
47 define('LOCK_DIRECTORY', 'lock');
48 // Directory for lockfiles, must be writable to the user you run
49 // daemon process or cronjobs under.
50
61e420e9
AD
51 define('CACHE_DIR', 'cache');
52 // Local cache directory for RSS feed content.
baef3dfe 53
81745ce7
AD
54 define('ICONS_DIR', "feed-icons");
55 define('ICONS_URL', "feed-icons");
56a2fd35 56 // Local and URL path to the directory, where feed favicons are stored.
15ea0691
AD
57 // Unless you really know what you're doing, please keep those relative
58 // to tt-rss main directory.
c8437f35 59
0d421af8
AD
60 // **********************
61 // *** Authentication ***
62 // **********************
63
0f28f81f 64 // Please see PLUGINS below to configure various authentication modules.
0d421af8
AD
65
66 define('AUTH_AUTO_CREATE', true);
67 // Allow authentication modules to auto-create users in tt-rss internal
68 // database when authenticated successfully.
69
70 define('AUTH_AUTO_LOGIN', true);
71 // Automatically login user on remote or other kind of externally supplied
72 // authentication, otherwise redirect to login form as normal.
73 // If set to true, users won't be able to set application language
74 // and settings profile.
75
09e8bdfd
AD
76 // *********************
77 // *** Feed settings ***
78 // *********************
8fd92701 79
09e8bdfd
AD
80 define('FORCE_ARTICLE_PURGE', 0);
81 // When this option is not 0, users ability to control feed purging
82 // intervals is disabled and all articles (which are not starred)
83 // older than this amount of days are purged.
14073c0a 84
09e8bdfd 85 // *** PubSubHubbub settings ***
1fb2d0d8 86
09e8bdfd
AD
87 define('PUBSUBHUBBUB_HUB', '');
88 // URL to a PubSubHubbub-compatible hub server. If defined, "Published
89 // articles" generated feed would automatically become PUSH-enabled.
a8931123 90
d89c6dd8 91 define('PUBSUBHUBBUB_ENABLED', false);
09e8bdfd
AD
92 // Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
93 // won't try to subscribe to PUSH feed updates.
a8931123 94
09e8bdfd
AD
95 // *********************
96 // *** Sphinx search ***
97 // *********************
98
99 define('SPHINX_ENABLED', false);
100 // Enable fulltext search using Sphinx (http://www.sphinxsearch.com)
101 // Please see http://tt-rss.org/wiki/SphinxSearch for more information.
a8931123 102
09e8bdfd
AD
103 define('SPHINX_INDEX', 'ttrss');
104 // Index name in Sphinx configuration. You can specify multiple indexes
105 // as a comma-separated string.
106
09e8bdfd
AD
107 // ***********************************
108 // *** Self-registrations by users ***
109 // ***********************************
64eb624c 110
4f7956b3
AD
111 define('ENABLE_REGISTRATION', false);
112 // Allow users to register themselves. Please be vary that allowing
113 // random people to access your tt-rss installation is a security risk
114 // and potentially might lead to data loss or server exploit. Disabled
115 // by default.
116
117 define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
118 // Email address to send new user notifications to.
119
120 define('REG_MAX_USERS', 10);
121 // Maximum amount of users which will be allowed to register on this
122 // system. 0 - no limit.
123
09e8bdfd
AD
124 // **********************************
125 // *** Cookies and login sessions ***
126 // **********************************
127
469061fe 128 define('SESSION_COOKIE_LIFETIME', 86400*30);
09e8bdfd
AD
129 // Default lifetime of a session (e.g. login) cookie. In seconds,
130 // 0 means cookie will be deleted when browser closes.
642cca7b 131 // Setting this to zero will affect several user preferences
f231f438 132 // like widescreen mode not saving and disable "remember me".
6cfd3c14
AD
133 // Note that if remember me is not checked, session cookie
134 // will always expire with browser session.
3907ef71 135
09e8bdfd
AD
136 define('SESSION_CHECK_ADDRESS', 1);
137 // Check client IP address when validating session:
138 // 0 - disable checking
139 // 1 - check first 3 octets of an address (recommended)
140 // 2 - check first 2 octets of an address
141 // 3 - check entire address
e4f7f8df 142
09e8bdfd
AD
143 // *********************************
144 // *** Email and digest settings ***
145 // *********************************
e4f7f8df 146
09e8bdfd
AD
147 define('SMTP_FROM_NAME', 'Tiny Tiny RSS');
148 define('SMTP_FROM_ADDRESS', 'noreply@your.domain.dom');
149 // Name, address and subject for sending outgoing mail. This applies
150 // to password reset notifications, digest emails and any other mail.
151
152 define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
153 // Subject line for email digests
154
155 define('SMTP_HOST', '');
156 // SMTP Host to send outgoing mail. Blank - use system MTA.
1b2afd2b 157
158 define('SMTP_PORT','');
159 // SMTP port to sent outgoing mail. Default is 25.
09e8bdfd
AD
160
161 define('SMTP_LOGIN', '');
162 define('SMTP_PASSWORD', '');
163 // These two options enable SMTP authentication when sending
164 // outgoing mail. Only used with SMTP_HOST
165
09e8bdfd
AD
166 // ***************************************
167 // *** Other settings (less important) ***
168 // ***************************************
65eebd13 169
09e8bdfd
AD
170 define('CHECK_FOR_NEW_VERSION', true);
171 // Check for new versions of tt-rss automatically.
172
09e8bdfd
AD
173 define('ENABLE_GZIP_OUTPUT', false);
174 // Selectively gzip output to improve wire performance. This requires
175 // PHP Zlib extension on the server.
8d34aa5b
AD
176 // Enabling this can break tt-rss in several httpd/php configurations,
177 // if you experience weird errors and tt-rss failing to start, blank pages
178 // after login, or content encoding errors, disable it.
e2bcd11b 179
9427ba1d 180 define('PLUGINS', 'auth_remote, auth_internal, note, updater');
0f28f81f
AD
181 // Comma-separated list of plugins to load automatically for all users.
182 // System plugins have to be specified here. Please enable at least one
183 // authentication plugin here (auth_*).
20b86c79
AD
184 // Users may enable other user plugins from Preferences/Plugins but may not
185 // disable plugins specified in this list.
0f28f81f 186
6e658547 187 define('CONFIG_VERSION', 26);
f2c43604 188 // Expected config version. Please update this option in config.php
fef8a1e4
AD
189 // if necessary (after migrating all new options from this file).
190
72932a75 191 // vim:ft=php
7d4c898a 192?>