099500200d8256ade2727fc180e6e7e15e6cdaac
[friendica.git/.git] / mods / local.config.vagrant.php
1 <?php\r
2 \r
3 // Local configuration\r
4 \r
5 /* If automatic system installation fails:\r
6  *\r
7  * Copy this file to local.config.php\r
8  *\r
9  * Why local.config.php? Because it contains sensitive information which could\r
10  * give somebody complete control of your database. Apache's default\r
11  * configuration will interpret any .php file as a script and won't show the values\r
12  *\r
13  * Then set the following for your MySQL installation\r
14  */\r
15 \r
16 return [\r
17         'database' => [\r
18                 'hostname' => 'localhost',\r
19                 'username' => 'friendica',\r
20                 'password' => 'friendica',\r
21                 'database' => 'friendica',\r
22                 'charset' => 'utf8mb4',\r
23         ],\r
24 \r
25         // ****************************************************************\r
26         // The configuration below will be overruled by the admin panel.\r
27         // Changes made below will only have an effect if the database does\r
28         // not contain any configuration for the friendica system.\r
29         // ****************************************************************\r
30 \r
31         'config' => [\r
32                 'admin_email' => 'admin@friendica.local',\r
33                 'sitename' => 'Friendica Social Network',\r
34                 'register_policy' => REGISTER_OPEN,\r
35                 'register_text' => '',\r
36         ],\r
37         'system' => [\r
38                 'default_timezone' => 'UTC',\r
39                 'language' => 'en',\r
40         ],\r
41 ];\r