]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Test for failed test
[friendica.git] / static / defaults.config.php
index 35b1bc7b8700170cce785ca44a901219aef8a460..b0832d88f35f4bfc6358a5534286744e2e17ef11 100644 (file)
@@ -32,6 +32,11 @@ return [
                // Can contain the port number with the syntax "hostname:port".
                'hostname' => '',
 
+               // port (Integer)
+               // Port of the database server.
+               // Can be used instead of adding a port number to the hostname
+               'port' => null,
+
                // user (String)
                // Database user name. Please don't use "root".
                'username' => '',
@@ -122,6 +127,10 @@ return [
                // Deny public access to the local user directory.
                'block_local_dir' => false,
 
+               // community_no_sharer (Boolean)
+               // Don't display sharing accounts on the global community
+               'community_no_sharer' => false,
+
                // cron_interval (Integer)
                // Minimal period in minutes between two calls of the "Cron" worker job.
                'cron_interval' => 5,
@@ -178,7 +187,8 @@ return [
 
                // dbclean-expire-limit (Integer)
                // This defines the number of items that are to be deleted in a single call.
-               // Reduce this value when you are getting memory issues.
+               // Reduce this value when you are getting lock issues.
+               // A value of 0 disables the deletion process.
                'dbclean-expire-limit' => 1000,
 
                // diaspora_test (Boolean)
@@ -290,6 +300,16 @@ return [
                // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
                'logger_config' => 'stream',
 
+               // maintenance_start (String)
+               // Start of the window for the daily maintenance cron call.
+               // The system timezone is used when no timezone is defined here.
+               'maintenance_start' => '01:00 +00:00',
+
+               // maintenance_end (String)
+               // End of the window for the daily maintenance cron call
+               // The system timezone is used when no timezone is defined here.
+               'maintenance_end' => '03:00 +00:00',
+
                // max_batch_queue (Integer)
                // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
                'max_batch_queue' => 1000,
@@ -362,6 +382,10 @@ return [
                // Don't use OEmbed to fetch more information about a link.
                'no_oembed' => false,
 
+               // no_redirect_list (Array)
+               // List of domains where HTTP redirects should be ignored. 
+               'no_redirect_list' => [],
+
                // no_smilies (Boolean)
                // Don't show smilies.
                'no_smilies' => false,
@@ -467,6 +491,10 @@ return [
                // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
                'throttle_limit_month' => 0,
 
+               // update_active_contacts (Boolean)
+               // When activated, only public contacts will be activated regularly that are used for example in items or tags.
+               'update_active_contacts' => false,
+
                // username_min_length (Integer)
                // The minimum character length a username can be.
                // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.