X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=70b0af78105b424816bfc3b9a9b5a70fd037fc86;hb=547b4684fd0879e657104d46c95329c0d2af78fb;hp=ee15ce826df704b5798275c1ffa716df77ac2c4e;hpb=81b244f91ed1706c9a645ae8eb45254b633e031b;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index ee15ce826d..70b0af7810 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -172,6 +172,10 @@ return [ // 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', @@ -286,6 +290,10 @@ return [ // 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, @@ -693,5 +701,10 @@ return [ // 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', + ], ];