mirror of
https://github.com/friendica/friendica
synced 2025-01-09 20:04:44 +00:00
Fix segfault in PHP 5.6 parsing INI strings
- add documentation to generated local.ini.php file
This commit is contained in:
parent
c8d3067d0a
commit
b343987120
1 changed files with 8 additions and 5 deletions
|
@ -1,5 +1,8 @@
|
||||||
<?php return <<<INI
|
<?php return <<<INI
|
||||||
|
|
||||||
|
; If you're unsure about what any of the config keys below do, please check the config/defaults.ini.php for detailed
|
||||||
|
; documentation of their data type and behavior.
|
||||||
|
|
||||||
[database]
|
[database]
|
||||||
hostname = {{$dbhost}}
|
hostname = {{$dbhost}}
|
||||||
username = {{$dbuser}}
|
username = {{$dbuser}}
|
||||||
|
@ -33,11 +36,11 @@ language = {{$language}}
|
||||||
allowed_themes = vier,quattro,duepuntozero,smoothly,frio
|
allowed_themes = vier,quattro,duepuntozero,smoothly,frio
|
||||||
theme = vier
|
theme = vier
|
||||||
|
|
||||||
allowed_link_protocols[] = ftp
|
allowed_link_protocols[0] = ftp
|
||||||
allowed_link_protocols[] = ftps
|
allowed_link_protocols[1] = ftps
|
||||||
allowed_link_protocols[] = mailto
|
allowed_link_protocols[2] = mailto
|
||||||
allowed_link_protocols[] = cid
|
allowed_link_protocols[3] = cid
|
||||||
allowed_link_protocols[] = gopher
|
allowed_link_protocols[4] = gopher
|
||||||
|
|
||||||
maximagesize = 800000
|
maximagesize = 800000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue