X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=3cde0bfd497ceeb9f760c432873f284e402d3c7c;hb=15bc1ac8a18924551c8af772c07e5fed9c75023b;hp=f114b5a74af5ec74c5224365a44989c032b4fead;hpb=d47a792f5188169d40dcc9d1ca12693c835ae481;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index f114b5a74a..3cde0bfd49 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', @@ -325,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.