]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Merge pull request #11195 from annando/issue-10966
[friendica.git] / static / defaults.config.php
index 455272926e8cd4ab01c3d2f6088d74d98441f16e..3cde0bfd497ceeb9f760c432873f284e402d3c7c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -53,16 +53,10 @@ return [
                // Database connection charset. Changing this value will likely corrupt special characters.
                'charset' => 'utf8mb4',
 
-               // emulate_prepares (Boolean) (Experimental)
-               // If enabled, prepared statements will be emulated.
-               // In combination with MySQLi this will cast all return values to strings.
-               'emulate_prepares' => false,
-
-               // pdo_emulate_prepares (Boolean) (Experimental)
+               // pdo_emulate_prepares (Boolean)
                // If enabled, the builtin emulation for prepared statements is used.
-               // Due to limitations of that emulation (all return values are casted as strings)
-               // this will most likely cause issues and should not be used on production systems.
-               'pdo_emulate_prepares' => false,
+               // This can be used as a workaround for the database error "Prepared statement needs to be re-prepared".
+               'pdo_emulate_prepares' => true,
 
                // disable_pdo (Boolean)
                // PDO is used by default (if available). Otherwise MySQLi will be used.
@@ -127,6 +121,10 @@ return [
                // Deny public access to the local user directory.
                'block_local_dir' => false,
 
+               // blocked_tags (String)
+               // Comma separated list of hash tags that shouldn't be displayed in the trending tags
+               'blocked_tags' => '',
+
                // community_no_sharer (Boolean)
                // Don't display sharing accounts on the global community
                'community_no_sharer' => false,
@@ -143,6 +141,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',
@@ -200,6 +202,14 @@ return [
                // If it is not running and hadn't been terminated normally, it will be started automatically.
                'daemon_watchdog' => false,
 
+               // delete_sleeping_processes (Boolean)
+               // 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,
@@ -249,10 +259,6 @@ return [
                // Number of "free" searches when system => permit_crawling is enabled.
                'free_crawls' => 10,
 
-               // frontend_worker_timeout (Integer)
-               // Value in minutes after we think that a frontend task was killed by the webserver.
-               'frontend_worker_timeout' => 10,
-
                // groupedit_image_limit (Integer)
                // Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
                // This can alternatively be set on a per account basis in the pconfig table.
@@ -297,6 +303,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,
@@ -317,6 +329,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.
@@ -361,6 +381,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,
@@ -411,10 +435,6 @@ return [
                // Don't show smilies.
                'no_smilies' => false,
 
-               // optimize_items (Boolean)
-               // Triggers an SQL command to optimize the item table before expiring items.
-               'optimize_items' => false,
-
                // paranoia (Boolean)
                // Log out users if their IP address changed.
                'paranoia' => false,
@@ -435,10 +455,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:
@@ -470,6 +486,10 @@ return [
                // Whether to use Cache to store session data or to use PHP native session storage.
                'session_handler' => 'database',
 
+               // remote_avatar_lookup (Boolean)
+               // Perform an avatar lookup via the activated services for remote contacts
+               'remote_avatar_lookup' => false,
+
                // remove_multiplicated_lines (Boolean)
                // If enabled, multiple linefeeds in items are stripped to a single one.
                'remove_multiplicated_lines' => false,
@@ -540,6 +560,11 @@ return [
                // Number of worker tasks that are fetched in a single query.
                'worker_fetch_limit' => 1,
 
+               // worker_fork (Boolean)
+               // Experimental setting. Use pcntl_fork to spawn a new worker process.
+               // Does not work when "worker_multiple_fetch" is enabled (Needs more testing)
+               'worker_fork' => false,
+
                // worker_jpm (Boolean)
                // If enabled, it prints out the jobs per minute.
                'worker_jpm' => false,
@@ -557,6 +582,7 @@ return [
                // worker_multiple_fetch (Boolean)
                // When activated, the worker fetches jobs for multiple workers (not only for itself).
                // This is an experimental setting without knowing the performance impact.
+               // Does not work when "worker_fork" is enabled (Needs more testing)
                'worker_multiple_fetch' => false,
                
                // worker_defer_limit (Integer)
@@ -564,7 +590,7 @@ return [
                'worker_defer_limit' => 15,
 
                // xrd_timeout (Integer)
-               // Timeout in seconds for fetching the XRD links.
+               // Timeout in seconds for fetching the XRD links and other requests with an expected shorter timeout
                'xrd_timeout' => 20,
        ],
        'experimental' => [