]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
add configuration option that was documented in CONFIGURE
[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   GNUsocial
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://www.gnu.org/software/social/
28  */
29
30 $default =
31     array('site' =>
32         array('name' => 'Just another GNU social node',
33               'nickname' => 'gnusocial',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'neo-gnu',
37               'path' => $_path,
38               'logfile' => null,
39               'logdebug' => false,
40               'logo' => null,
41               'ssllogo' => null,
42               'logperf' => false, // Enable to dump performance counters to syslog
43               'logperf_detail' => false, // Enable to dump every counter hit
44               'fancy' => false,
45               'locale_path' => INSTALLDIR.'/locale',
46               'language' => 'en',
47               'langdetect' => true,
48               'languages' => get_all_languages(),
49               'email' =>
50               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
51               'fakeaddressrecovery' => true,
52               'broughtby' => null,
53               'timezone' => 'UTC',
54               'broughtbyurl' => null,
55               'closed' => false,
56               'inviteonly' => true,
57               'private' => false,
58               'ssl' => 'never',
59               'sslproxy' => false,   // set to true to force GNU social to think it is HTTPS (i.e. using reverse proxy to enable it)
60               'sslserver' => null,
61               'dupelimit' => 60, // default for same person saying the same thing
62               'textlimit' => 1000, // in chars; 0 == no limit
63               'indent' => true,
64               'use_x_sendfile' => false,
65               'notice' => null, // site wide notice text
66               'build' => 1, // build number, for code-dependent cache
67               ),
68         'security' =>
69         array('hash_algos' => ['sha1', 'sha256', 'sha512'],   // set to null for anything that hash_hmac() can handle (and is in hash_algos())
70         ),
71         'db' =>
72           array('database' => null, // must be set
73               'schema_location' => INSTALLDIR . '/classes',
74               'class_location' => INSTALLDIR . '/classes',
75               'require_prefix' => 'classes/',
76               'class_prefix' => '',
77               'mirror' => null,
78               'utf8' => true,
79               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
80               'quote_identifiers' => false,
81               'type' => 'mysql',
82               'schemacheck' => 'runtime', // 'runtime' or 'script'
83               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
84               'log_queries' => false, // true to log all DB queries
85               'log_slow_queries' => 0, // if set, log queries taking over N seconds
86               'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
87         'fix' =>
88         array('fancyurls' => true,   // makes sure aliases in WebFinger etc. are not f'd by index.php/ URLs
89               'legacy_http' => false,   // set this to true if you have upgraded your site from http=>https
90               ),
91         'log' => [
92                 'debugtrace' => false,  // index.php handleError function, whether to include exception backtrace in log
93             ],
94         'syslog' =>
95         array('appname' => 'statusnet', # for syslog
96               'priority' => 'debug', # XXX: currently ignored
97               'facility' => LOG_USER),
98         'queue' =>
99         array('enabled' => true,
100               'daemon' => false, # Use queuedaemon. Default to false
101               'subsystem' => 'db', # default to database, or 'stomp'
102               'stomp_server' => null,
103               'queue_basename' => '/queue/statusnet/',
104               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
105               'stomp_username' => null,
106               'stomp_password' => null,
107               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
108               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
109               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
110               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
111               'monitor' => null, // URL to monitor ping endpoint (work in progress)
112               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
113               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
114               'debug_memory' => false, // true to spit memory usage to log
115               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
116                                      // Default will share all queues for all sites within each group.
117                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
118                                      // using nickname identifier as site.
119                                      //
120                                      // 'main/distrib' separate "distrib" queue covering all sites
121                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
122               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
123               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
124               ),
125         'license' =>
126         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
127               'owner' => null, # can be name of content owner e.g. for enterprise
128               'url' => 'https://creativecommons.org/licenses/by/3.0/',
129               'title' => 'Creative Commons Attribution 3.0',
130               'image' => $_path . '/theme/licenses/cc_by_3.0_80x15.png'),
131         'mail' =>
132         array('backend' => 'mail',
133               'params' => null,
134               'domain_check' => true),
135         'nickname' =>
136         array('blacklist' => array(),
137               'featured' => array()),
138         'profile' =>
139         array('banned' => array(),
140               'biolimit' => null,
141               'changenick' => false,
142               'allowprivate' => false,  // whether to allow setting stream to private ("only followers can read")
143               'backup' => false,    // can cause DoS, so should be done via CLI
144               'restore' => false,
145               'delete' => false,
146               'move' => true),
147         'image' =>
148         array('jpegquality' => 85),
149         'avatar' =>
150         array('server' => null,
151               'dir' => INSTALLDIR . '/avatar/',
152               'path' => $_path . '/avatar/',
153               'ssl' => null,
154               'maxsize' => 300),
155         'foaf' =>
156         array(
157               'mbox_sha1sum' => false,
158             ),
159         'public' =>
160         array('localonly' => false,
161               'blacklist' => array(),
162               'autosource' => array()),
163         'theme' =>
164         array('server' => null,
165               'dir' => null,
166               'path'=> null,
167               'ssl' => null),
168         'usertheme' =>
169         array('linkcolor' => 'black',
170               'backgroundcolor' => 'black'),
171         'theme_upload' =>
172         array('enabled' => extension_loaded('zip')),
173         'javascript' =>
174         array('server' => null,
175               'path'=> null,
176               'ssl' => null,
177               'bustframes' => true),
178         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
179         array('server' => null,
180               'dir' => null,
181               'path' => null,
182               'ssl' => null),
183         'throttle' =>
184         array('enabled' => false, // whether to throttle edits; false by default
185               'count' => 20, // number of allowed messages in timespan
186               'timespan' => 600), // timespan for throttling
187         'invite' =>
188         array('enabled' => true),
189         'tag' =>
190         array('dropoff' => 864000.0,   # controls weighting based on age
191               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
192         'popular' =>
193         array('dropoff' => 864000.0,   # controls weighting based on age
194               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
195         'daemon' =>
196         array('piddir' => sys_get_temp_dir(),
197               'user' => false,
198               'group' => false),
199         'emailpost' =>
200         array('enabled' => false),
201         'sms' =>
202         array('enabled' => false),
203         'twitterimport' =>
204         array('enabled' => false),
205         'integration' =>
206         array('source' => 'StatusNet', # source attribute for Twitter
207               'taguri' => null), # base for tag URIs
208         'twitter' =>
209         array('signin' => true,
210               'consumer_key' => null,
211               'consumer_secret' => null),
212         'cache' =>
213         array('base' => null),
214         'ping' =>
215         array('notify' => array(),
216               'timeout' => 2),
217         'inboxes' =>
218         array('enabled' => true), # ignored after 0.9.x
219         'newuser' =>
220         array('default' => null,
221               'welcome' => null),
222         'linkify' => array(
223             // "bare" below means "without schema", like domain.com vs. https://domain.com
224             'bare_domains' => false,  // convert domain.com to <a href="http://domain.com/" ...>domain.com</a> ?
225             'bare_ipv4' => false,   // convert IPv4 addresses to hyperlinks?
226             'bare_ipv6' => false,   // convert IPv6 addresses to hyperlinks?
227         ),
228         'attachments' =>
229         array('server' => null,
230               'dir' => INSTALLDIR . '/file/',
231               'path' => $_path . '/file/',
232               'sslserver' => null,
233               'sslpath' => null,
234               'ssl' => null,
235               'supported' => array(
236                                 'application/vnd.oasis.opendocument.chart'                  => 'odc',
237                                 'application/vnd.oasis.opendocument.formula'                => 'odf',
238                                 'application/vnd.oasis.opendocument.graphics'               => 'odg',
239                                 'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
240                                 'application/vnd.oasis.opendocument.image'                  => 'odi',
241                                 'application/vnd.oasis.opendocument.presentation'           => 'odp',
242                                 'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
243                                 'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
244                                 'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
245                                 'application/vnd.oasis.opendocument.text'                   => 'odt',
246                                 'application/vnd.oasis.opendocument.text-master'            => 'odm',
247                                 'application/vnd.oasis.opendocument.text-template'          => 'ott',
248                                 'application/vnd.oasis.opendocument.text-web'               => 'oth',
249                                 'application/pdf'   => 'pdf',
250                                 'application/zip'   => 'zip',
251                                 'application/x-bzip2' => 'bz2',
252                                 'application/x-go-sgf' => 'sgf',
253                                 'application/xml'   => 'xml',
254                                 'application/gpx+xml' => 'gpx',
255                                 'image/png'         => 'png',
256                                 'image/jpeg'        => 'jpg',
257                                 'image/gif'         => 'gif',
258                                 'image/svg+xml'     => 'svg',
259                                 'image/vnd.microsoft.icon'  => 'ico',
260                                 'audio/ogg'         => 'ogg',
261                                 'audio/mpeg'        => 'mpg',
262                                 'audio/x-speex'     => 'spx',
263                                 'application/ogg'   => 'ogx',
264                                 'text/plain'        => 'txt',
265                                 'video/mpeg'        => 'mpeg',
266                                 'video/mp4'         => 'mp4',
267                                 'video/ogg'         => 'ogv',
268                                 'video/quicktime'   => 'mov',
269                                 'video/webm'        => 'webm',
270                                 ),
271               'file_quota' => 5000000,
272               'user_quota' => 50000000,
273               'monthly_quota' => 15000000,
274               'uploads' => true,
275               'show_html' => false,  // show (filtered) text/html attachments (and oEmbed HTML etc.). Doesn't affect AJAX calls.
276               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
277               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
278               'extblacklist' => [
279                     'php' => 'phps',    // this turns .php into .phps
280                     'exe' => false,  // this would deny any uploads to keep the "exe" file extension
281                 ],
282               ),
283         'thumbnail' => [
284               'dir' => null,    // falls back to File::path('thumb') (equivalent to ['attachments']['dir'] .  '/thumb/')
285               'path' => null,   // falls back to generating a URL with File::url('thumb/$filename') (equivalent to ['attachments']['path'] . '/thumb/')
286               'server' => null, // Only used if ['thumbnail']['path'] is NOT empty, and then it falls back to ['site']['server'], schema is decided from GNUsocial::useHTTPS()
287
288               'crop' => false,      // overridden to true if thumb height === null
289               'maxsize' => 1000,     // thumbs with an edge larger than this will not be generated
290               'width' => 450,
291               'height' => 600,
292               'upscale' => false,
293               'animated' => false, // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
294             ],
295         'application' =>
296         array('desclimit' => null),
297         'group' =>
298         array('maxaliases' => 3,
299               'desclimit' => null,
300               'addtag' => false),
301         'peopletag' =>
302         array('maxtags' => 100, // maximum number of tags a user can create.
303               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
304               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
305               'desclimit' => null),
306         'search' =>
307         array('type' => 'like'),
308         'sessions' =>
309         array('handle' => false,   // whether to handle sessions ourselves
310               'debug' => false,    // debugging output for sessions
311               'gc_limit' => 1000), // max sessions to expire at a time
312         'htmlfilter' => [  // remove tags from user/remotely generated HTML if they are === true
313             'img' => true,
314             'video' => true,
315             'audio' => true,
316         ],
317         'htmlpurifier' => [ // configurable options for HTMLPurifier
318             'Cache.DefinitionImpl'  => 'Serializer',
319             'Cache.SerializerPath'  => implode(DIRECTORY_SEPARATOR, [sys_get_temp_dir(), 'gnusocial']),
320         ],
321         'notice' =>
322         array('contentlimit' => null,
323               'allowprivate' => false,  // whether to allow users to "check the padlock" to publish notices available for their subscribers.
324               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
325               'hidespam' => true), // Whether to hide silenced users from timelines
326         'message' =>
327         array('contentlimit' => null),
328         'location' =>
329         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
330               'sharedefault' => false),
331         'logincommand' =>
332         array('disabled' => true),
333         'plugins' =>
334         array('core' => array(
335                             'ActivityVerb' => array(),
336                             'ActivityVerbPost' => array(),
337                             'ActivityModeration' => array(),
338                             'AuthCrypt' => array(),
339                             'Cronish' => array(),
340                             'Favorite' => array(),
341                             'HTMLPurifierSchemes' => array(),
342                             'Share' => array(),
343                             'LRDD' => array(),
344                         ),
345               'default' => array(
346                             'Activity' => array(),
347                             'AntiBrute' => array(),
348                             'Bookmark' => array(),
349                             'ClientSideShorten' => array(),
350                             'DefaultLayout' => array(),
351                             'Directory' => array(),
352                             'DirectMessage' => array(),
353                             'EmailAuthentication' => array(),
354                             'Event' => array(),
355                             'Oembed' => array(),
356                             'OpenID' => array(),
357                             'OpportunisticQM' => array(),
358                             'OStatus' => array(),
359                             'Poll' => array(),
360                             'SimpleCaptcha' => array(),
361                             'TagSub' => array(),
362                             'WebFinger' => array(),
363                         ),
364               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
365               'server' => null,
366               'sslserver' => null,
367               'path' => null,
368               'sslpath' => null,
369               ),
370         'admin' =>
371         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
372         'singleuser' =>
373         array('enabled' => false,
374               'nickname' => null),
375         'robotstxt' =>
376         array('crawldelay' => 0,
377               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
378               ),
379         'api' =>
380         array('realm' => null),
381         'nofollow' =>
382         array('subscribers' => true,
383               'members' => true,
384               'peopletag' => true,
385               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
386         'url' =>
387         array('shortener' => 'internal',
388               'maxurllength' => 100,
389               'maxnoticelength' => -1),
390         'http' => // HTTP client settings when contacting other sites
391         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer")
392               'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
393               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
394               'connect_timeout' => 5,
395               'proxy_host' => null,
396               'proxy_port' => null,
397               'proxy_user' => null,
398               'proxy_password' => null,
399               'proxy_auth_scheme' => null,
400               ),
401         'router' =>
402         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
403         'discovery' =>
404           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
405         'performance' => array('high' => false) // disable some features for higher performance; default false
406     );