]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Partial fix for ticket #2489 -- problems with SNI SSL virtual host certificate valida...
[quix0rs-gnu-social.git] / lib / default.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Default settings for core configuration
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Config
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-9 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 $default =
31   array('site' =>
32         array('name' => 'Just another StatusNet microblog',
33               'nickname' => 'statusnet',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'default',
37               'path' => $_path,
38               'logfile' => null,
39               'logo' => null,
40               'logdebug' => false,
41               'fancy' => false,
42               'locale_path' => INSTALLDIR.'/locale',
43               'language' => 'en',
44               'langdetect' => true,
45               'languages' => get_all_languages(),
46               'email' =>
47               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
48               'broughtby' => null,
49               'timezone' => 'UTC',
50               'broughtbyurl' => null,
51               'closed' => false,
52               'inviteonly' => false,
53               'private' => false,
54               'ssl' => 'never',
55               'sslserver' => null,
56               'shorturllength' => 30,
57               'dupelimit' => 60, // default for same person saying the same thing
58               'textlimit' => 140,
59               'indent' => true,
60               'use_x_sendfile' => false,
61               'notice' => null // site wide notice text
62               ),
63         'db' =>
64         array('database' => 'YOU HAVE TO SET THIS IN config.php',
65               'schema_location' => INSTALLDIR . '/classes',
66               'class_location' => INSTALLDIR . '/classes',
67               'require_prefix' => 'classes/',
68               'class_prefix' => '',
69               'mirror' => null,
70               'utf8' => true,
71               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
72               'quote_identifiers' => false,
73               'type' => 'mysql',
74               'schemacheck' => 'runtime', // 'runtime' or 'script'
75               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
76               'log_queries' => false, // true to log all DB queries
77               'log_slow_queries' => 0), // if set, log queries taking over N seconds
78         'syslog' =>
79         array('appname' => 'statusnet', # for syslog
80               'priority' => 'debug', # XXX: currently ignored
81               'facility' => LOG_USER),
82         'queue' =>
83         array('enabled' => false,
84               'subsystem' => 'db', # default to database, or 'stomp'
85               'stomp_server' => null,
86               'queue_basename' => '/queue/statusnet/',
87               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
88               'stomp_username' => null,
89               'stomp_password' => null,
90               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
91               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
92               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
93               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
94               'monitor' => null, // URL to monitor ping endpoint (work in progress)
95               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
96               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
97               'debug_memory' => false, // true to spit memory usage to log
98               'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
99               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
100                                      // Default will share all queues for all sites within each group.
101                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
102                                      // using nickname identifier as site.
103                                      //
104                                      // 'main/distrib' separate "distrib" queue covering all sites
105                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
106               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
107               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
108               ),
109         'license' =>
110         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
111               'owner' => null, # can be name of content owner e.g. for enterprise
112               'url' => 'http://creativecommons.org/licenses/by/3.0/',
113               'title' => 'Creative Commons Attribution 3.0',
114               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
115         'mail' =>
116         array('backend' => 'mail',
117               'params' => null,
118               'domain_check' => true),
119         'nickname' =>
120         array('blacklist' => array(),
121               'featured' => array()),
122         'profile' =>
123         array('banned' => array(),
124               'biolimit' => null),
125         'avatar' =>
126         array('server' => null,
127               'dir' => INSTALLDIR . '/avatar/',
128               'path' => $_path . '/avatar/',
129               'ssl' => null),
130         'background' =>
131         array('server' => null,
132               'dir' => INSTALLDIR . '/background/',
133               'path' => $_path . '/background/',
134               'ssl' => null),
135         'public' =>
136         array('localonly' => true,
137               'blacklist' => array(),
138               'autosource' => array()),
139         'theme' =>
140         array('server' => null,
141               'dir' => null,
142               'path'=> null,
143               'ssl' => null),
144         'theme_upload' =>
145         array('enabled' => extension_loaded('zip')),
146         'javascript' =>
147         array('server' => null,
148               'path'=> null,
149               'ssl' => null),
150         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
151         array('server' => null,
152               'dir' => null,
153               'path' => null,
154               'ssl' => null),
155         'throttle' =>
156         array('enabled' => false, // whether to throttle edits; false by default
157               'count' => 20, // number of allowed messages in timespan
158               'timespan' => 600), // timespan for throttling
159         'xmpp' =>
160         array('enabled' => false,
161               'server' => 'INVALID SERVER',
162               'port' => 5222,
163               'user' => 'update',
164               'encryption' => true,
165               'resource' => 'uniquename',
166               'password' => 'blahblahblah',
167               'host' => null, # only set if != server
168               'debug' => false, # print extra debug info
169               'public' => array()), # JIDs of users who want to receive the public stream
170         'invite' =>
171         array('enabled' => true),
172         'tag' =>
173         array('dropoff' => 864000.0,   # controls weighting based on age
174               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
175         'popular' =>
176         array('dropoff' => 864000.0,   # controls weighting based on age
177               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
178         'daemon' =>
179         array('piddir' => '/var/run',
180               'user' => false,
181               'group' => false),
182         'emailpost' =>
183         array('enabled' => true),
184         'sms' =>
185         array('enabled' => true),
186         'twitterimport' =>
187         array('enabled' => false),
188         'integration' =>
189         array('source' => 'StatusNet', # source attribute for Twitter
190               'taguri' => null), # base for tag URIs
191         'twitter' =>
192         array('signin' => true,
193               'consumer_key' => null,
194               'consumer_secret' => null),
195         'cache' =>
196         array('base' => null),
197         'ping' =>
198         array('notify' => array(),
199               'timeout' => 2),
200         'inboxes' =>
201         array('enabled' => true), # ignored after 0.9.x
202         'newuser' =>
203         array('default' => null,
204               'welcome' => null),
205         'snapshot' =>
206         array('run' => 'web',
207               'frequency' => 10000,
208               'reporturl' => 'http://status.net/stats/report'),
209         'attachments' =>
210         array('server' => null,
211               'dir' => INSTALLDIR . '/file/',
212               'path' => $_path . '/file/',
213               'ssl' => null,
214               'supported' => array('image/png',
215                                    'image/jpeg',
216                                    'image/gif',
217                                    'image/svg+xml',
218                                    'audio/mpeg',
219                                    'audio/x-speex',
220                                    'application/ogg',
221                                    'application/pdf',
222                                    'application/vnd.oasis.opendocument.text',
223                                    'application/vnd.oasis.opendocument.text-template',
224                                    'application/vnd.oasis.opendocument.graphics',
225                                    'application/vnd.oasis.opendocument.graphics-template',
226                                    'application/vnd.oasis.opendocument.presentation',
227                                    'application/vnd.oasis.opendocument.presentation-template',
228                                    'application/vnd.oasis.opendocument.spreadsheet',
229                                    'application/vnd.oasis.opendocument.spreadsheet-template',
230                                    'application/vnd.oasis.opendocument.chart',
231                                    'application/vnd.oasis.opendocument.chart-template',
232                                    'application/vnd.oasis.opendocument.image',
233                                    'application/vnd.oasis.opendocument.image-template',
234                                    'application/vnd.oasis.opendocument.formula',
235                                    'application/vnd.oasis.opendocument.formula-template',
236                                    'application/vnd.oasis.opendocument.text-master',
237                                    'application/vnd.oasis.opendocument.text-web',
238                                    'application/x-zip',
239                                    'application/zip',
240                                    'text/plain',
241                                    'video/mpeg',
242                                    'video/mp4',
243                                    'video/quicktime',
244                                    'video/mpeg'),
245               'file_quota' => 5000000,
246               'user_quota' => 50000000,
247               'monthly_quota' => 15000000,
248               'uploads' => true,
249               'filecommand' => '/usr/bin/file',
250               ),
251         'application' =>
252         array('desclimit' => null),
253         'group' =>
254         array('maxaliases' => 3,
255               'desclimit' => null),
256         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
257         'search' =>
258         array('type' => 'fulltext'),
259         'sessions' =>
260         array('handle' => false, // whether to handle sessions ourselves
261               'debug' => false), // debugging output for sessions
262         'design' =>
263         array('backgroundcolor' => null, // null -> 'use theme default'
264               'contentcolor' => null,
265               'sidebarcolor' => null,
266               'textcolor' => null,
267               'linkcolor' => null,
268               'backgroundimage' => null,
269               'disposition' => null),
270         'custom_css' =>
271         array('enabled' => true,
272               'css' => ''),
273         'notice' =>
274         array('contentlimit' => null),
275         'message' =>
276         array('contentlimit' => null),
277         'location' =>
278         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
279               'sharedefault' => true),
280         'omb' =>
281         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
282         'logincommand' =>
283         array('disabled' => true),
284         'plugins' =>
285         array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
286                                                    'freeService' => true,
287                                                    'serviceUrl'=>'http://ur1.ca/'),
288                                  'PtitUrl' => array('shortenerName' => 'ptiturl.com',
289                                                     'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
290                                  'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
291                                                       array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
292                                                       array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
293                                                       array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
294                                  'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
295                                  'Geonames' => null,
296                                  'Mapstraction' => null,
297                                  'OStatus' => null,
298                                  'WikiHashtags' => null,
299                                  'RSSCloud' => null,
300                                  'OpenID' => null),
301               ),
302         'admin' =>
303         array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice')),
304         'singleuser' =>
305         array('enabled' => false,
306               'nickname' => null),
307         'robotstxt' =>
308         array('crawldelay' => 0,
309               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
310               ),
311         'api' =>
312         array('realm' => null),
313         'nofollow' =>
314         array('subscribers' => true,
315               'members' => true,
316               'peopletag' => true),
317         'http' => // HTTP client settings when contacting other sites
318         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
319               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
320               ),
321         );