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