]> git.mxchange.org Git - friendica.git/blob - mods/local.config.ci.php
f482eecfb73b448f67571b529aa577d017827eb9
[friendica.git] / mods / local.config.ci.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 // Local configuration
23
24 /* If automatic system installation fails:
25  *
26  * Copy this file to local.config.php
27  *
28  * Why local.config.php? Because it contains sensitive information which could
29  * give somebody complete control of your database. Apache's default
30  * configuration will interpret any .php file as a script and won't show the values
31  *
32  * Then set the following for your MySQL installation
33  */
34
35 return [
36         'database' => [
37                 'hostname' => 'localhost',
38                 'username' => 'friendica',
39                 'password' => 'friendica',
40                 'database' => 'friendica',
41                 'charset' => 'utf8mb4',
42         ],
43
44         // ****************************************************************
45         // The configuration below will be overruled by the admin panel.
46         // Changes made below will only have an effect if the database does
47         // not contain any configuration for the friendica system.
48         // ****************************************************************
49
50         'config' => [
51                 'hostname' => 'friendica.local',
52                 'admin_email' => 'admin@friendica.local',
53                 'sitename' => 'Friendica Social Network',
54                 'register_policy' => \Friendica\Module\Register::OPEN,
55                 'register_text' => '',
56         ],
57         'system' => [
58                 'default_timezone' => 'UTC',
59                 'language' => 'en',
60                 'ssl_policy' => \Friendica\App\BaseURL::SSL_POLICY_SELFSIGN,
61                 'url' => 'https://friendica.local',
62                 'urlpath' => '',
63                 // don't start unexpected worker.php processes during test!
64                 'worker_dont_fork' => true,
65         ],
66 ];