]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Use gsid for the network name
[friendica.git] / static / defaults.config.php
index a4fd11662fd34c5fe38da7b5033aed93491cf01b..006c3d4f57cf374a2f22229ec605f8f6c40d0199 100644 (file)
@@ -1,12 +1,28 @@
 <?php
-
-// CONFIG.PHP
-
-/* This file declares the default values for the base config of Friendica.
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * This file declares the default values for the base config of Friendica.
  *
  * These configuration values aren't accessible from the admin settings page and custom values must be set in config/local.config.php
  *
  * Please don't edit this file directly as its content may change in the upcoming versions.
+ *
  */
 
 return [
@@ -16,6 +32,16 @@ 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,
+
+               // 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' => '',
@@ -29,8 +55,24 @@ return [
                'database' => '',
 
                // charset (String)
-               // Database connexion charset. Changing this value will likely corrupt special characters.
+               // Database connection charset. Changing this value will likely corrupt special characters.
                'charset' => 'utf8mb4',
+
+               // pdo_emulate_prepares (Boolean)
+               // If enabled, the builtin emulation for prepared statements is used.
+               // 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.
+               'disable_pdo' => false,
+
+               // persistent (Boolean)
+               // This controls if the system should use persistent connections or not.
+               // Persistent connections increase the performance.
+               // On the other hand the number of open connections are higher,
+               // this will most likely increase the system load.
+               'persistent' => false,
        ],
        'config' => [
                // admin_email (Comma-separated list)
@@ -51,6 +93,10 @@ return [
                'php_path' => 'php',
        ],
        'system' => [
+               // adjust_poll_frequency (Boolean)
+               // Automatically detect and set the best feed poll frequency.
+               'adjust_poll_frequency' => false,
+
                // allowed_link_protocols (Array)
                // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
                'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
@@ -59,6 +105,10 @@ return [
                // Only show small preview pictures.
                'always_show_preview' => false,
 
+               // ap_always_bcc (Boolean)
+               // Adresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance.
+               'ap_always_bcc' => false,
+
                // archival_days (Integer)
                // Number of days that we try to deliver content before we archive a contact.
                'archival_days' => 32,
@@ -68,18 +118,38 @@ return [
                // chose "Remember me" when logging in is considered logged out.
                'auth_cookie_lifetime' => 7,
 
+               // big_emojis (Boolean)
+               // Display "Emoji Only" posts in big.
+               'big_emojis' => false,
+
                // block_local_dir (Boolean)
                // 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,
+
+               // contact_update_limit (Integer)
+               // How much contacts should be checked at a time?
+               'contact_update_limit' => 100,
+
                // cron_interval (Integer)
                // Minimal period in minutes between two calls of the "Cron" worker job.
                'cron_interval' => 5,
 
-               // cache_driver (database|memcache|memcached|redis)
-               // Whether to use Memcache or Memcached or Redis to store temporary cache.
+               // cache_driver (database|memcache|memcached|redis|apcu)
+               // 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',
@@ -104,9 +174,9 @@ return [
                // Watchlist of indexes to watch.
                'db_log_index_watch' => '',
 
-               // db_log_index_blacklist (Comma-separated list)
-               // Blacklist of indexes that shouldn't be watched.
-               'db_log_index_blacklist' => '',
+               // db_log_index_denylist (Comma-separated list)
+               // Deny list of indexes that shouldn't be watched.
+               'db_log_index_denylist' => '',
 
                // db_loglimit (Integer)
                // If a database call lasts longer than this value in seconds it is logged.
@@ -128,9 +198,23 @@ 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,
 
+               // daemon_watchdog (Boolean)
+               // Enable regular checking if the daemon is running.
+               // 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,
@@ -160,6 +244,10 @@ return [
                // Disable the polling of DFRN and OStatus contacts through onepoll.php.
                'disable_polling' => false,
 
+               // display_resharer (Boolean)
+               // Display the first resharer as icon and text on a reshared item.
+               'display_resharer' => false,
+
                // dlogfile (Path)
                // location of the developer log file.
                'dlogfile' => '',
@@ -168,19 +256,23 @@ return [
                // restricts develop log writes to requests originating from this IP address.
                'dlogip' => '',
 
+               // expire-notify-priority (integer)
+               // Priority for the expirary notification 
+               'expire-notify-priority' => PRIORITY_LOW,
+
                // free_crawls (Integer)
                // 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.
                'groupedit_image_limit' => 400,
 
+               // gserver_update_limit (Integer)
+               // How much servers should be checked at a time?
+               'gserver_update_limit' => 100,
+
                // hsts (Boolean)
                // Enables the sending of HTTP Strict Transport Security headers.
                'hsts' => false,
@@ -207,6 +299,21 @@ return [
                // If set true registration is only possible after a current member of the node has send an invitation.
                'invitation_only' => false,
 
+               // itemspage_network (Integer)
+               // default number of items per page in stream pages (network, community, profile/contact statuses, search)
+               'itemspage_network' => 40,
+
+               // itemspage_network_mobile (Integer)
+               // default number of items per page in stream pages (network, community, profile/contact statuses, search)
+               // 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,
@@ -227,6 +334,24 @@ 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.
+               '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,
@@ -244,6 +369,16 @@ return [
                // Maximum number of queue items for a single contact before subsequent messages are discarded.
                'max_contact_queue' => 500,
 
+               // max_csv_file_size (Integer)
+               // When uploading a CSV with account addresses to follow
+               // in the user settings, this controls the maximum file
+               // size of the upload file.
+               'max_csv_file_size' => 30720,
+
+               // max_feed_items (Integer)
+               // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
+               'max_feed_items' => 20,
+
                // max_image_length (Integer)
                // An alternate way of limiting picture upload sizes.
                // Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
@@ -251,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,
@@ -279,7 +418,11 @@ return [
 
                // min_poll_interval (Integer)
                // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
-               'min_poll_interval' => 1,
+               'min_poll_interval' => 15,
+
+               // minimum_posting_interval (Integer)
+               // Minimum interval between two feed posts per user
+               'minimum_posting_interval' => 0,
 
                // no_count (Boolean)
                // Don't do count calculations (currently only when showing photo albums).
@@ -289,18 +432,14 @@ 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,
 
-               // no_view_full_size (Boolean)
-               // Don't add the link "View full size" under a resized image.
-               'no_view_full_size' => 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,
@@ -321,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:
@@ -336,10 +471,6 @@ return [
                // - 0 = every minute
                'pushpoll_frequency' => 3,
 
-               // queue_no_dead_check (Boolean)
-               // Ignore if the target contact or server seems to be dead during queue delivery.
-               'queue_no_dead_check' => false,
-
                // redis_host (String)
                // Host name of the redis daemon.
                'redis_host' => '127.0.0.1',
@@ -360,6 +491,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,
@@ -370,10 +505,22 @@ return [
                // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
                'sendmail_params' => true,
 
+               // set_creation_date (Boolean)
+               // When enabled, the user can enter a creation date when composing a post.
+               'set_creation_date' => false,
+
                // show_global_community_hint (Boolean)
                // When the global community page is enabled, use this option to display a hint above the stream, that this is a collection of all public top-level postings that arrive on your node.
                'show_global_community_hint' => false,
 
+               // show_received (Boolean)
+               // Show the receive data along with the post creation date
+               'show_received' => true,
+
+               // show_received_seconds (Integer)
+               // Display the received date when the difference between received and created is higher than this.
+               'show_received_seconds' => 500,
+
                // show_unsupported_addons (Boolean)
                // Show all addons including the unsupported ones.
                'show_unsupported_addons' => false,
@@ -394,6 +541,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.
@@ -418,6 +569,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,
@@ -432,12 +588,18 @@ return [
                // Setting 0 would allow maximum worker queues at all times, which is not recommended.
                'worker_load_exponent' => 3,
 
+               // 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)
                // Per default the systems tries delivering for 15 times before dropping it.
                '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' => [