2021-07-17 16:48:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Local configuration
|
2024-02-22 05:04:11 +01:00
|
|
|
// Docs: https://github.com/friendica/friendica/blob/stable/static/settings.config.php
|
2021-07-17 16:48:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
'database' => [
|
|
|
|
'hostname' => 'localhost',
|
2022-06-11 10:25:22 +02:00
|
|
|
'username' => '__DB_USER__',
|
2021-07-17 16:48:02 +02:00
|
|
|
'password' => '__DB_PWD__',
|
|
|
|
'database' => '__DB_NAME__',
|
|
|
|
'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-02-12 00:03:37 +01:00
|
|
|
'php_path' => '/usr/bin/php',
|
2021-07-17 16:48:02 +02:00
|
|
|
'admin_email' => '__EMAIL__',
|
|
|
|
'sitename' => 'Friendica Social Network',
|
|
|
|
'register_policy' => \Friendica\Module\Register::OPEN,
|
2023-08-21 18:25:03 +02:00
|
|
|
'max_import_size' => 200000,
|
2024-02-22 05:04:11 +01:00
|
|
|
'register_text' => '',
|
2021-07-17 16:48:02 +02:00
|
|
|
],
|
|
|
|
'system' => [
|
2023-08-21 18:25:03 +02:00
|
|
|
'url' => 'https://__DOMAIN__',
|
2024-02-12 00:03:37 +01:00
|
|
|
'basepath' => '__INSTALL_DIR__',
|
2022-06-11 10:25:22 +02:00
|
|
|
'default_timezone' => '__TIMEZONE__',
|
2021-07-19 09:57:05 +02:00
|
|
|
'language' => '__LANGUAGE__',
|
2024-02-22 05:04:11 +01:00
|
|
|
'pidfile' => '__INSTALL_DIR__/daemon.pid',
|
|
|
|
// Blocks search for users who are not logged in to prevent crawlers from blocking your system.
|
|
|
|
'local_search' => false,
|
|
|
|
'logfile' => '/var/log/friendica/friendica.log',
|
|
|
|
'loglevel' => 'notice',
|
2021-07-17 16:48:02 +02:00
|
|
|
],
|
|
|
|
];
|