]> git.mxchange.org Git - friendica.git/blob - config/settings.config.php
Add expected FULLTEXT index to profile table
[friendica.git] / config / settings.config.php
1 <?php\r
2 \r
3 // SETTINGS.PHP\r
4 \r
5 /* This file declares the default values for the admin settings of Friendica.\r
6  *\r
7  * These values will be overridden by the admin settings page.\r
8  *\r
9  * Please don't edit this file directly as its content may change in the upcoming versions.\r
10  */\r
11 \r
12 return [\r
13         'config' => [\r
14                 // info (String)\r
15                 // Plaintext description of this node, used in the /friendica module.\r
16                 'info' => '',\r
17 \r
18                 // register_policy (Constant)\r
19                 // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.\r
20                 // Be certain to create your own personal account before setting REGISTER_CLOSED.\r
21                 // REGISTER_APPROVE requires you set system.admin_email to the email address of an already registered person who can authorize and/or approve/deny the request.\r
22                 'register_policy' => REGISTER_CLOSED,\r
23 \r
24                 // register_text (String)\r
25                 // Will be displayed prominently on the registration page.\r
26                 'register_text' => '',\r
27 \r
28                 // sitename (String)\r
29                 // Displayed server name.\r
30                 'sitename' => 'Friendica Social Network',\r
31         ],\r
32         'system' => [\r
33                 // account_abandon_days (Integer)\r
34                 // Will not waste system resources polling external sites for abandonded accounts.\r
35                 // Enter 0 for no time limit.\r
36                 'account_abandon_days' => 0,\r
37 \r
38                 // addon (Comma-separated list)\r
39                 // Manual list of addons which are enabled on this system.\r
40                 'addon' => '',\r
41 \r
42                 // allowed_themes (Comma-separated list)\r
43                 // Themes users can change to in their settings.\r
44                 'allowed_themes' => 'quattro,vier,duepuntozero,smoothly',\r
45 \r
46                 // default_timezone (String)\r
47                 // Choose a default timezone. See https://secure.php.net/manual/en/timezones.php\r
48                 // It only applies to timestamps for anonymous viewers.\r
49                 'default_timezone' => 'UTC',\r
50 \r
51                 // directory (String)\r
52                 // URL of the global directory.\r
53                 'directory' => 'https://dir.friendica.social',\r
54 \r
55                 // forbidden_nicknames (Comma-separated list)\r
56                 // Prevents users from registering the specified nicknames on this node.\r
57                 // Default value comprises classic role names from RFC 2142.\r
58                 'forbidden_nicknames' => 'info, marketing, sales, support, abuse, noc, security, postmaster, hostmaster, usenet, news, webmaster, www, uucp, ftp, root, sysop',\r
59 \r
60                 // jpeg_quality (Integer)\r
61                 // Sets the ImageMagick quality level for JPEG images. Values ranges from 50 (awful) to 100 (near perfect).\r
62                 'jpeg_quality' => 100,\r
63 \r
64                 // language (String)\r
65                 // System default languague, inluding admin-created user default language.\r
66                 // Two-letters ISO 639-1 code.\r
67                 'language' => 'en',\r
68 \r
69                 // max_image_length (Integer)\r
70                 // An alternate way of limiting picture upload sizes.\r
71                 // Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).\r
72                 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).\r
73                 // If you don't want to set a maximum length, set to -1.\r
74                 'max_image_length' => -1,\r
75 \r
76                 // maximagesize (Integer)\r
77                 // Maximum size in bytes of an uploaded photo.\r
78                 'maximagesize' => 800000,\r
79 \r
80                 // no_regfullname (Boolean)\r
81                 // Allow pseudonyms (true) or enforce a space between first name and last name in Full name, as an anti spam measure (false).\r
82                 'no_regfullname' => true,\r
83 \r
84                 // optimize_max_tablesize (Integer)\r
85                 // Maximum table size (in MB) for the automatic optimization.\r
86                 // -1 to disable automatic optimization.\r
87                 //  0 to use internal default (100MB)\r
88                 'optimize_max_tablesize' => -1,\r
89 \r
90                 // rino_encrypt (Integer)\r
91                 // Server-to-server private message encryption (RINO).\r
92                 // Encryption will only be provided if this setting is set to a non zero value on both servers.\r
93                 // Set to 0 to disable, 2 to enable, 1 is deprecated but won't need mcrypt.\r
94                 'rino_encrypt' => 2,\r
95 \r
96                 // temppath (String)\r
97                 // Custom temporary file directory\r
98                 'temppath' => '',\r
99 \r
100                 // theme (String)\r
101                 // System theme name.\r
102                 'theme' => 'vier',\r
103 \r
104                 // url (String)\r
105                 // The fully-qualified URL of this Friendica node.\r
106                 // Used by the worker in a non-HTTP execution environment.\r
107                 'url' => '',\r
108         ],\r
109 \r
110         // Used in the admin settings to lock certain features\r
111         'featurelock' => [\r
112         ],\r
113 ];\r