friendica/mods/local.config.ci.php

39 wiersze
1.1 KiB
PHP

2023-02-12 13:38:43 +00:00
<?php
2023-02-12 16:09:06 +00:00
/**
2024-08-24 13:32:32 +00:00
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
2023-02-12 16:09:06 +00:00
*
2024-08-24 13:32:32 +00:00
* SPDX-License-Identifier: AGPL-3.0-or-later
2023-02-12 16:09:06 +00:00
*
2023-02-12 13:38:43 +00:00
*/
return [
'database' => [
'hostname' => 'localhost',
'username' => 'friendica',
'password' => 'friendica',
'database' => 'friendica',
'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' => [
'admin_email' => 'admin@friendica.local',
'sitename' => 'Friendica Social Network',
'register_policy' => \Friendica\Module\Register::OPEN,
'register_text' => '',
],
'system' => [
'default_timezone' => 'UTC',
'language' => 'en',
'url' => 'https://friendica.local',
// don't start unexpected worker.php processes during test!
'worker_dont_fork' => true,
],
];