default.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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. $default =
  30. array('site' =>
  31. array('name' => 'Just another GNU social node',
  32. 'nickname' => 'gnusocial',
  33. 'wildcard' => null,
  34. 'server' => $_server,
  35. 'theme' => 'neo-gnu',
  36. 'path' => $_path,
  37. 'logfile' => null,
  38. 'logdebug' => false,
  39. 'logo' => null,
  40. 'ssllogo' => null,
  41. 'logperf' => false, // Enable to dump performance counters to syslog
  42. 'logperf_detail' => false, // Enable to dump every counter hit
  43. 'fancy' => false,
  44. 'locale_path' => INSTALLDIR.'/locale',
  45. 'language' => 'en',
  46. 'langdetect' => true,
  47. 'languages' => get_all_languages(),
  48. 'email' =>
  49. array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
  50. 'fakeaddressrecovery' => true,
  51. 'broughtby' => null,
  52. 'timezone' => 'UTC',
  53. 'broughtbyurl' => null,
  54. 'closed' => false,
  55. 'inviteonly' => true,
  56. 'private' => false,
  57. 'ssl' => 'never',
  58. 'sslproxy' => false, // set to true to force GNU social to think it is HTTPS (i.e. using reverse proxy to enable it)
  59. 'sslserver' => null,
  60. 'dupelimit' => 60, // default for same person saying the same thing
  61. 'textlimit' => 1000, // in chars; 0 == no limit
  62. 'indent' => true,
  63. 'use_x_sendfile' => false,
  64. 'notice' => null, // site wide notice text
  65. 'build' => 1, // build number, for code-dependent cache
  66. ),
  67. 'security' =>
  68. array('hash_algos' => ['sha1', 'sha256', 'sha512'], // set to null for anything that hash_hmac() can handle (and is in hash_algos())
  69. ),
  70. 'db' =>
  71. array('database' => null, // must be set
  72. 'schema_location' => INSTALLDIR . '/classes',
  73. 'class_location' => INSTALLDIR . '/classes',
  74. 'require_prefix' => 'classes/',
  75. 'class_prefix' => '',
  76. 'mirror' => null,
  77. 'utf8' => true,
  78. 'db_driver' => 'DB', # XXX: JanRain libs only work with DB
  79. 'quote_identifiers' => false,
  80. 'type' => 'mysql',
  81. 'schemacheck' => 'runtime', // 'runtime' or 'script'
  82. 'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
  83. 'log_queries' => false, // true to log all DB queries
  84. 'log_slow_queries' => 0, // if set, log queries taking over N seconds
  85. 'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
  86. 'fix' =>
  87. array('fancyurls' => true, // makes sure aliases in WebFinger etc. are not f'd by index.php/ URLs
  88. 'legacy_http' => false, // set this to true if you have upgraded your site from http=>https
  89. ),
  90. 'log' => [
  91. 'debugtrace' => false, // index.php handleError function, whether to include exception backtrace in log
  92. ],
  93. 'syslog' =>
  94. array('appname' => 'statusnet', # for syslog
  95. 'priority' => 'debug', # XXX: currently ignored
  96. 'facility' => LOG_USER),
  97. 'queue' =>
  98. array('enabled' => true,
  99. 'daemon' => false, # Use queuedaemon. Default to false
  100. 'threads' => null, # an empty value here uses processor count to determine
  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. 'crop' => false, // overridden to true if thumb height === null
  288. 'maxsize' => 1000, // thumbs with an edge larger than this will not be generated
  289. 'width' => 450,
  290. 'height' => 600,
  291. 'upscale' => false,
  292. 'animated' => false, // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
  293. ],
  294. 'application' =>
  295. array('desclimit' => null),
  296. 'group' =>
  297. array('maxaliases' => 3,
  298. 'desclimit' => null,
  299. 'addtag' => true),
  300. 'peopletag' =>
  301. array('maxtags' => 100, // maximum number of tags a user can create.
  302. 'maxpeople' => 500, // maximum no. of people with the same tag by the same user
  303. 'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
  304. 'desclimit' => null),
  305. 'search' =>
  306. array('type' => 'like'),
  307. 'sessions' =>
  308. array('handle' => false, // whether to handle sessions ourselves
  309. 'debug' => false, // debugging output for sessions
  310. 'gc_limit' => 1000), // max sessions to expire at a time
  311. 'htmlfilter' => [ // remove tags from user/remotely generated HTML if they are === true
  312. 'img' => true,
  313. 'video' => true,
  314. 'audio' => true,
  315. ],
  316. 'htmlpurifier' => [ // configurable options for HTMLPurifier
  317. 'Cache.DefinitionImpl' => 'Serializer',
  318. 'Cache.SerializerPath' => implode(DIRECTORY_SEPARATOR, [sys_get_temp_dir(), 'gnusocial']),
  319. ],
  320. 'notice' =>
  321. array('contentlimit' => null,
  322. 'allowprivate' => false, // whether to allow users to "check the padlock" to publish notices available for their subscribers.
  323. 'defaultscope' => null, // null means 1 if site/private, 0 otherwise
  324. 'hidespam' => true), // Whether to hide silenced users from timelines
  325. 'message' =>
  326. array('contentlimit' => null),
  327. 'location' =>
  328. array('share' => 'user', // whether to share location; 'always', 'user', 'never'
  329. 'sharedefault' => false),
  330. 'logincommand' =>
  331. array('disabled' => true),
  332. 'plugins' =>
  333. array('core' => array(
  334. 'ActivityVerb' => array(),
  335. 'ActivityVerbPost' => array(),
  336. 'ActivityModeration' => array(),
  337. 'AuthCrypt' => array(),
  338. 'Cronish' => array(),
  339. 'Favorite' => array(),
  340. 'HTMLPurifierSchemes' => array(),
  341. 'Share' => array(),
  342. 'LRDD' => array(),
  343. ),
  344. 'default' => array(
  345. 'Activity' => array(),
  346. 'AntiBrute' => array(),
  347. 'Blacklist' => 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. 'Nodeinfo' => array(),
  364. ),
  365. 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
  366. 'server' => null,
  367. 'sslserver' => null,
  368. 'path' => null,
  369. 'sslpath' => null,
  370. ),
  371. 'admin' =>
  372. array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
  373. 'singleuser' =>
  374. array('enabled' => false,
  375. 'nickname' => null),
  376. 'robotstxt' =>
  377. array('crawldelay' => 0,
  378. 'disallow' => array('main', 'settings', 'admin', 'search', 'message')
  379. ),
  380. 'api' =>
  381. array('realm' => null),
  382. 'nofollow' =>
  383. array('subscribers' => true,
  384. 'members' => true,
  385. 'peopletag' => true,
  386. 'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
  387. 'url' =>
  388. array('shortener' => 'internal',
  389. 'maxurllength' => 100,
  390. 'maxnoticelength' => -1),
  391. 'http' => // HTTP client settings when contacting other sites
  392. 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")
  393. 'ssl_verify_host' => true, // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
  394. 'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
  395. 'connect_timeout' => 5,
  396. 'timeout' => intval(ini_get('default_socket_timeout')), // effectively should be this by default already, but this makes it more explicitly configurable for you users .)
  397. 'proxy_host' => null,
  398. 'proxy_port' => null,
  399. 'proxy_user' => null,
  400. 'proxy_password' => null,
  401. 'proxy_auth_scheme' => null,
  402. ),
  403. 'router' =>
  404. array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
  405. 'discovery' =>
  406. array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
  407. 'performance' => array('high' => false) // disable some features for higher performance; default false
  408. );