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