Adding legacy code mapping for given configurations.
This commit is contained in:
parent
2e602afd3e
commit
279543deb9
1 changed files with 14 additions and 0 deletions
|
@ -43,6 +43,10 @@ return [
|
||||||
// Themes users can change to in their settings.
|
// Themes users can change to in their settings.
|
||||||
'allowed_themes' => 'quattro,vier,duepuntozero,smoothly',
|
'allowed_themes' => 'quattro,vier,duepuntozero,smoothly',
|
||||||
|
|
||||||
|
// debugging (boolean)
|
||||||
|
// Enable/Disable Debugging (logging)
|
||||||
|
'debugging' => false,
|
||||||
|
|
||||||
// default_timezone (String)
|
// default_timezone (String)
|
||||||
// Choose a default timezone. See https://secure.php.net/manual/en/timezones.php
|
// Choose a default timezone. See https://secure.php.net/manual/en/timezones.php
|
||||||
// It only applies to timestamps for anonymous viewers.
|
// It only applies to timestamps for anonymous viewers.
|
||||||
|
@ -66,6 +70,16 @@ return [
|
||||||
// Two-letters ISO 639-1 code.
|
// Two-letters ISO 639-1 code.
|
||||||
'language' => 'en',
|
'language' => 'en',
|
||||||
|
|
||||||
|
// logfile (String)
|
||||||
|
// The logfile for storing logs.
|
||||||
|
// Can be a full path or a relative path to the Friendica home directory
|
||||||
|
'logfile' => 'friendica.log',
|
||||||
|
|
||||||
|
// loglevel (String)
|
||||||
|
// The loglevel for all logs.
|
||||||
|
// Has to be one of these values: emergency, alert, critical, error, warning, notice, info, debug
|
||||||
|
'loglevel' => 'notice',
|
||||||
|
|
||||||
// max_image_length (Integer)
|
// max_image_length (Integer)
|
||||||
// An alternate way of limiting picture upload sizes.
|
// An alternate way of limiting picture upload sizes.
|
||||||
// Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
|
// Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
|
||||||
|
|
Loading…
Reference in a new issue