X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=70b0af78105b424816bfc3b9a9b5a70fd037fc86;hb=a145712f042f54c1e4ce657be1ab8c649ea2f6f8;hp=b405d5f5e4dd76489f0c9c5c1f72d04d701c8731;hpb=7158b35f58a3269e57350c2cde394921de2109cc;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index b405d5f5e4..70b0af7810 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -1,6 +1,6 @@ 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' => '', @@ -113,10 +118,28 @@ return [ // chose "Remember me" when logging in is considered logged out. 'auth_cookie_lifetime' => 7, + // avatar_cache (Boolean) + // Cache avatar pictures as files (experimental) + 'avatar_cache' => false, + + // avatar_cache_path (String) + // File path to the avatar cache. Default is /(your basepath)/avatar/ + // The value has to be an absolute path and has to end with a "/" + 'avatar_cache_path' => '', + + // avatar_cache_url (String) + // Base URL of the avatar cache. Default is http(s)://(your hostname)/avatar/ + // The value has to start with the scheme and end with a "/" + 'avatar_cache_url' => '', + // big_emojis (Boolean) // Display "Emoji Only" posts in big. 'big_emojis' => false, + // bulk_delivery (Boolean) + // Delivers AP messages in a bulk (experimental) + 'bulk_delivery' => false, + // block_local_dir (Boolean) // Deny public access to the local user directory. 'block_local_dir' => false, @@ -141,6 +164,18 @@ return [ // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache. 'cache_driver' => 'database', + // decoupled_receiver (Boolean) + // Decouple incoming AP posts by doing the processing in the background. + 'decoupled_receiver' => false, + + // distributed_cache_driver (database|memcache|memcached|redis) + // Whether to use database, Memcache, Memcached or Redis as a distributed cache. + 'distributed_cache_driver' => 'database', + + // fetch_parents (Boolean) + // Fetch missing parent posts + 'fetch_parents' => true, + // config_adapter (jit|preload) // Allow to switch the configuration adapter to improve performances at the cost of memory consumption. 'config_adapter' => 'jit', @@ -202,6 +237,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, @@ -247,6 +286,14 @@ return [ // Priority for the expirary notification 'expire-notify-priority' => PRIORITY_LOW, + // fetch_by_worker (Boolean) + // Fetch missing posts via a background process + 'fetch_by_worker' => false, + + // fetch_featured_posts (Boolean) + // Fetch featured posts from all contacts + 'fetch_featured_posts' => false, + // free_crawls (Integer) // Number of "free" searches when system => permit_crawling is enabled. 'free_crawls' => 10, @@ -295,6 +342,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 +368,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 +420,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, @@ -367,6 +432,10 @@ return [ // Maximum number of concurrent database processes for foreground tasks. 'max_processes_frontend' => 20, + // max_recursion_depth (Integer) + // Maximum recursion depth when fetching posts until the job is delegated to a worker task or finished. + 'max_recursion_depth' => 50, + // maximagesize (Integer) // Maximum size in bytes of an uploaded photo. 'maximagesize' => 800000, @@ -429,10 +498,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: @@ -472,12 +537,24 @@ return [ // If enabled, multiple linefeeds in items are stripped to a single one. 'remove_multiplicated_lines' => false, + // runtime_ignore (Array) + // List of ignored commands for the runtime logging. + 'runtime_ignore' => [], + + // runtime_loglimit (Integer) + // The runtime is logged, When the program execution time is higher than this value. + 'runtime_loglimit' => 0, + // sendmail_params (Boolean) // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails. // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address. // 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, @@ -510,6 +587,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, + // transmit_pending_events (Boolean) + // Transmit pending events upon accepted contact request for forums + 'transmit_pending_events' => false, + // 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, @@ -571,6 +652,17 @@ return [ // Timeout in seconds for fetching the XRD links and other requests with an expected shorter timeout 'xrd_timeout' => 20, ], + 'proxy' => [ + // forwarded_for_headers (String) + // A comma separated list of all allowed header values to retrieve the real client IP + // The headers are evaluated in order. + 'forwarded_for_headers' => 'HTTP_X_FORWARDED_FOR', + + // trusted_proxies (String) + // A comma separated list of all trusted proxies, which will get skipped during client IP retrieval + // IP ranges and CIDR notations are allowed + 'trusted_proxies' => '', + ], 'experimental' => [ // exp_themes (Boolean) // Show experimental themes in user settings. @@ -594,12 +686,25 @@ 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, + // ap_inbox_store_untrusted (Boolean) + // Store untrusted content in the inbox entries + 'ap_inbox_store_untrusted' => 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, - ] + + // ap_log_unknown (Boolean) + // Logs every unknown ActivityPub activity + 'ap_log_unknown' => false, + + // ap_log_failure (Boolean) + // Logs every ActivityPub activity that couldn't be compacted + 'ap_log_failure' => false, + ], + 'smarty3' => [ + // config_dir (String) + // Base working directory for the templating engine, must be writeable by the webserver user + 'config_dir' => 'view/smarty3', + ], ];