29f57f4afe1fd4b412d9229ef83107d17deb6293
[friendica.git/.git] / static / settings.config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  * This file declares the default values for the admin settings of Friendica.
21  *
22  * These values will be overridden by the admin settings page.
23  *
24  * Please don't edit this file directly as its content may change in the upcoming versions.
25  *
26  */
27
28 return [
29         'config' => [
30                 // info (String)
31                 // Plaintext description of this node, used in the /friendica module.
32                 'info' => '',
33
34                 // register_policy (Constant)
35                 // Your choices are OPEN, APPROVE, or CLOSED.
36                 // Be certain to create your own personal account before setting CLOSED.
37                 // APPROVE requires you set system.admin_email to the email address of an
38                 // already registered person who can authorize and/or approve/deny the request.
39                 'register_policy' => \Friendica\Module\Register::CLOSED,
40
41                 // register_text (String)
42                 // Will be displayed prominently on the registration page.
43                 'register_text' => '',
44
45                 // sitename (String)
46                 // Displayed server name.
47                 'sitename' => 'Friendica Social Network',
48         ],
49         'system' => [
50                 // account_abandon_days (Integer)
51                 // Will not waste system resources polling external sites for abandonded accounts.
52                 // Enter 0 for no time limit.
53                 'account_abandon_days' => 0,
54
55                 // addon (Comma-separated list)
56                 // Manual list of addons which are enabled on this system.
57                 'addon' => '',
58
59                 // allowed_themes (Comma-separated list)
60                 // Themes users can change to in their settings.
61                 'allowed_themes' => 'quattro,vier,duepuntozero,smoothly',
62
63                 // debugging (boolean)
64                 // Enable/Disable Debugging (logging)
65                 'debugging' => false,
66
67                 // default_timezone (String)
68                 // Choose a default timezone. See https://secure.php.net/manual/en/timezones.php
69                 // It only applies to timestamps for anonymous viewers.
70                 'default_timezone' => 'UTC',
71
72                 // directory (String)
73                 // URL of the global directory.
74                 'directory' => 'https://dir.friendica.social',
75
76                 // forbidden_nicknames (Comma-separated list)
77                 // Prevents users from registering the specified nicknames on this node.
78                 // Default value comprises classic role names from RFC 2142.
79                 'forbidden_nicknames' => 'info, marketing, sales, support, abuse, noc, security, postmaster, hostmaster, usenet, news, webmaster, www, uucp, ftp, root, sysop',
80
81                 // jpeg_quality (Integer)
82                 // Sets the ImageMagick quality level for JPEG images. Values ranges from 50 (awful) to 100 (near perfect).
83                 'jpeg_quality' => 100,
84
85                 // language (String)
86                 // System default languague, inluding admin-created user default language.
87                 // Two-letters ISO 639-1 code.
88                 'language' => 'en',
89
90                 // logfile (String)
91                 // The logfile for storing logs.
92                 // Can be a full path or a relative path to the Friendica home directory
93                 'logfile' => 'log/friendica.log',
94
95                 // loglevel (String)
96                 // The loglevel for all logs.
97                 // Has to be one of these values: emergency, alert, critical, error, warning, notice, info, debug
98                 'loglevel' => 'notice',
99
100                 // max_image_length (Integer)
101                 // An alternate way of limiting picture upload sizes.
102                 // Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
103                 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
104                 // If you don't want to set a maximum length, set to -1.
105                 'max_image_length' => -1,
106
107                 // maximagesize (Integer)
108                 // Maximum size in bytes of an uploaded photo.
109                 'maximagesize' => 800000,
110
111                 // no_regfullname (Boolean)
112                 // Allow pseudonyms (true) or enforce a space between first name and last name in Full name, as an anti spam measure (false).
113                 'no_regfullname' => true,
114
115                 // optimize_max_tablesize (Integer)
116                 // Maximum table size (in MB) for the automatic optimization.
117                 // -1 to disable automatic optimization.
118                 //  0 to use internal default (100MB)
119                 'optimize_max_tablesize' => -1,
120
121                 // maxloadavg (Integer)
122                 // Maximum system load before delivery and poll processes are deferred.
123                 'maxloadavg' => 20,
124
125                 // relay_server (String)
126                 // Address of the relay server where public posts should be send to.
127                 'relay_server' => 'https://social-relay.isurf.ca',
128
129                 // rino_encrypt (Integer)
130                 // Server-to-server private message encryption (RINO).
131                 // Encryption will only be provided if this setting is set to a non zero value on both servers.
132                 // Set to 0 to disable, 2 to enable, 1 is deprecated but won't need mcrypt.
133                 'rino_encrypt' => 2,
134
135                 // temppath (String)
136                 // Custom temporary file directory
137                 'temppath' => '',
138
139                 // theme (String)
140                 // System theme name.
141                 'theme' => 'vier',
142
143                 // url (String)
144                 // The fully-qualified URL of this Friendica node.
145                 // Used by the worker in a non-HTTP execution environment.
146                 'url' => '',
147
148                 // optimize_tables (Boolean)
149                 // Periodically (once an hour) run an "optimize table" command for cache tables
150                 'optimize_tables' => false,
151         ],
152
153         // Used in the admin settings to lock certain features
154         'featurelock' => [
155         ],
156 ];