1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/friendica_ynh.git synced 2024-09-03 18:36:14 +02:00

update config files

This commit is contained in:
OniriCorpe 2024-02-22 01:57:53 +01:00
parent 7dba646132
commit a7e5035f25
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,7 @@
<?php
// Addon configuration
// Copy this configuration file to addon.config.php and edit it if you want to configure addons, see below example for the twitter addon
// LDAP config for YunoHost
return [
'ldapauth' => [
'ldap_server' => 'localhost',

View file

@ -1,6 +1,7 @@
<?php
// Local configuration
// Docs: https://github.com/friendica/friendica/blob/stable/static/settings.config.php
/* If automatic system installation fails:
*
@ -37,6 +38,7 @@ return [
'sitename' => 'Friendica Social Network',
'register_policy' => \Friendica\Module\Register::OPEN,
'max_import_size' => 200000,
'register_text' => '',
],
'system' => [
'url' => 'https://__DOMAIN__',
@ -44,5 +46,7 @@ return [
'default_timezone' => '__TIMEZONE__',
'language' => '__LANGUAGE__',
'pidfile' => '__INSTALL_DIR__/daemon.pid',
// Blocks search for users who are not logged in to prevent crawlers from blocking your system.
'local_search' => false,
],
];