X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=0cfc2f65826f4fa6489f0a4a549cd9ac176a26ea;hb=7dd757b7f974c9d9d9e91ab394a4f52cca327646;hp=4d595010ce5f92525560d86883be14b78c508a7b;hpb=fb7f7435c080e15bdafbbcbb5a3dfd94ef8dd952;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index 4d595010ce..0cfc2f6582 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -1,6 +1,6 @@ '', + // 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' => '', @@ -48,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. @@ -122,6 +121,18 @@ 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, + + // 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, @@ -178,9 +189,19 @@ 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, + // diaspora_test (Boolean) // For development only. Disables the message transfer. 'diaspora_test' => false, @@ -210,6 +231,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' => '', @@ -218,19 +243,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, @@ -266,6 +295,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, @@ -286,6 +321,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, @@ -303,6 +348,12 @@ 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, @@ -314,6 +365,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, @@ -344,6 +399,10 @@ return [ // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59. '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). 'no_count' => false, @@ -352,14 +411,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, - // 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, @@ -380,10 +439,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: @@ -395,10 +450,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', @@ -419,6 +470,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, @@ -461,6 +516,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. @@ -485,6 +544,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, @@ -502,6 +566,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) @@ -509,7 +574,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' => [