2024-07-15 18:55:37 +00:00
|
|
|
<?php
|
2024-08-24 13:32:32 +00:00
|
|
|
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-07-15 18:55:37 +00:00
|
|
|
|
|
|
|
return [
|
|
|
|
'database' => [
|
|
|
|
'hostname' => '${MYSQL_HOST}',
|
|
|
|
'username' => '${MYSQL_USER}',
|
|
|
|
'password' => '${MYSQL_PASSWORD}',
|
|
|
|
'database' => '${MYSQL_DATABASE}',
|
|
|
|
'charset' => 'utf8mb4',
|
|
|
|
],
|
|
|
|
|
|
|
|
// ****************************************************************
|
|
|
|
// The configuration below will be overruled by the admin panel.
|
|
|
|
// Changes made below will only have an effect if the database does
|
|
|
|
// not contain any configuration for the friendica system.
|
|
|
|
// ****************************************************************
|
|
|
|
|
|
|
|
'config' => [
|
2024-07-16 17:12:26 +00:00
|
|
|
'admin_email' => 'admin@${ServerAlias}',
|
2024-07-15 18:55:37 +00:00
|
|
|
'sitename' => 'Friendica Social Network',
|
|
|
|
'register_policy' => \Friendica\Module\Register::OPEN,
|
|
|
|
'register_text' => '',
|
2024-07-16 17:12:26 +00:00
|
|
|
'php' => '${FRIENDICA_PHP_PATH}',
|
2024-07-15 18:55:37 +00:00
|
|
|
],
|
|
|
|
'system' => [
|
|
|
|
'default_timezone' => 'UTC',
|
|
|
|
'language' => 'en',
|
|
|
|
'basepath' => '${workspaceFolder}',
|
2024-08-31 14:54:05 +00:00
|
|
|
'url' => 'http://${ServerName}:${ServerPort}'
|
2024-07-15 18:55:37 +00:00
|
|
|
],
|
|
|
|
];
|