2018-06-25 02:26:00 +02:00
|
|
|
<?php return <<<INI
|
|
|
|
|
2018-07-12 04:24:52 +02:00
|
|
|
; 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.
|
|
|
|
|
2018-06-25 02:26:00 +02:00
|
|
|
[database]
|
2018-07-18 23:30:34 +02:00
|
|
|
hostname = "{{$dbhost}}"
|
|
|
|
username = "{{$dbuser}}"
|
|
|
|
password = "{{$dbpass}}"
|
|
|
|
database = "{{$dbdata}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
charset = utf8mb4
|
|
|
|
|
|
|
|
; ****************************************************************
|
|
|
|
; Some config values below can be overruled from the admin settings
|
|
|
|
; ****************************************************************
|
|
|
|
|
|
|
|
[config]
|
2018-07-18 23:30:34 +02:00
|
|
|
php_path = "{{$phpath}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
|
2018-07-18 23:30:34 +02:00
|
|
|
admin_email = "{{$adminmail}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
|
|
|
|
sitename = Friendica Social Network
|
|
|
|
|
|
|
|
register_policy = REGISTER_OPEN
|
|
|
|
register_text =
|
|
|
|
|
|
|
|
max_import_size = 200000
|
|
|
|
|
|
|
|
[system]
|
2018-07-18 23:30:34 +02:00
|
|
|
urlpath = "{{$urlpath}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
|
2018-07-18 23:30:34 +02:00
|
|
|
default_timezone = "{{$timezone}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
|
2018-07-18 23:30:34 +02:00
|
|
|
language = "{{$language}}"
|
2018-06-25 02:26:00 +02:00
|
|
|
|
|
|
|
allowed_themes = vier,quattro,duepuntozero,smoothly,frio
|
|
|
|
theme = vier
|
|
|
|
|
2018-07-12 04:24:52 +02:00
|
|
|
allowed_link_protocols[0] = ftp
|
|
|
|
allowed_link_protocols[1] = ftps
|
|
|
|
allowed_link_protocols[2] = mailto
|
|
|
|
allowed_link_protocols[3] = cid
|
|
|
|
allowed_link_protocols[4] = gopher
|
2018-06-25 02:26:00 +02:00
|
|
|
|
|
|
|
maximagesize = 800000
|
|
|
|
|
|
|
|
no_regfullname = true
|
|
|
|
|
|
|
|
block_local_dir = false
|
|
|
|
|
|
|
|
directory = https://dir.friendica.social
|
|
|
|
|
|
|
|
auth_cookie_lifetime = 7
|
|
|
|
|
|
|
|
INI;
|
|
|
|
// Keep this line
|