X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=c31446cfefad7a5198b17ff8e2b184111e04e13c;hb=00f39cd3081396a196889173e1754ea0b8a9740d;hp=0cfc2f65826f4fa6489f0a4a549cd9ac176a26ea;hpb=63da4a75e9da71a2decebd81b62554457dbd1fb5;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index 0cfc2f6582..c31446cfef 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -1,6 +1,6 @@ '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 +206,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, @@ -321,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. @@ -600,10 +616,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,