]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Merge pull request #11363 from annando/api-route
[friendica.git] / static / defaults.config.php
index b405d5f5e4dd76489f0c9c5c1f72d04d701c8731..97e4b0b54b2623812002e6f3e5facb40b1d2a638 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -37,6 +37,11 @@ return [
                // Can be used instead of adding a port number to the hostname
                'port' => null,
 
+               // socket (String)
+                // Socket of the database server.
+                // Can be used instead of adding a socket location to the hostname
+                'socket' => '',
+
                // user (String)
                // Database user name. Please don't use "root".
                'username' => '',
@@ -141,6 +146,10 @@ return [
                // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
                'cache_driver' => 'database',
 
+               // distributed_cache_driver (database|memcache|memcached|redis)
+               // Whether to use database, Memcache, Memcached or Redis as a distributed cache.
+               'distributed_cache_driver' => 'database',
+
                // config_adapter (jit|preload)
                // Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
                'config_adapter' => 'jit',
@@ -202,6 +211,10 @@ return [
                // Periodically delete waiting database processes.
                'delete_sleeping_processes' => false,
 
+               // dice_profiler_threshold (Float)
+               // For profiling Dice class creation (0 = disabled, >0 = seconds threshold for profiling)
+               'dice_profiler_threshold' => 0.5,
+
                // diaspora_test (Boolean)
                // For development only. Disables the message transfer.
                'diaspora_test' => false,
@@ -295,6 +308,12 @@ return [
                // on detected mobile devices
                'itemspage_network_mobile' => 20,
 
+               // jpeg_quality (Integer)
+               // 
+               // Lower numbers save space at cost of image detail
+               // where n is between 1 and 100, and with very poor results below about 50
+               'jpeg_quality' => 100,
+
                // like_no_comment (Boolean)
                // Don't update the "commented" value of an item when it is liked.
                'like_no_comment' => false,
@@ -315,6 +334,14 @@ return [
                // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
                'logger_config' => 'stream',
 
+               // syslog flags (Integer)
+               // Sets the syslog flags in case 'logger_config' is set to 'syslog'
+               'syslog_flags' => LOG_CONS | LOG_PID | LOG_ODELAY,
+
+               // syslog flags (Integer)
+               // Sets the syslog facility in case 'logger_config' is set to 'syslog'
+               'syslog_facility' => LOG_USER,
+
                // maintenance_start (String)
                // Start of the window for the daily maintenance cron call.
                // The system timezone is used when no timezone is defined here.
@@ -359,6 +386,10 @@ return [
                // If you don't want to set a maximum length, set to -1.
                'max_image_length' => -1,
 
+               // max_likers (Integer)
+               // Maximum number of "people who like (or don't like) this"  that we will list by name
+               'max_likers' => 75,
+
                // max_processes_backend (Integer)
                // Maximum number of concurrent database processes for background tasks.
                'max_processes_backend' => 5,
@@ -429,10 +460,6 @@ return [
                // Enable internal timings to help optimize code. Needed for "rendertime" addon.
                'profiler' => false,
 
-               // proxy_cache_time (Integer)
-               // Period in seconds after which the cache is cleared.
-               'proxy_cache_time' => 86400,
-
                // pushpoll_frequency (Integer)
                // Frequency of contact poll for subhub contact using the DFRM or OStatus network.
                // Available values:
@@ -594,10 +621,6 @@ return [
                // Logs every call to /inbox as a JSON file in Friendica's temporary directory
                'ap_inbox_log' => false,
 
-               // show_direction (Boolean)
-               // Display if a post had been fetched or had been pushed towards our server
-               'show_direction' => false,
-
                // total_ap_delivery (Boolean)
                // Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
                'total_ap_delivery' => false,