]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Add smarty3 dirs config
[friendica.git] / static / defaults.config.php
index ee15ce826df704b5798275c1ffa716df77ac2c4e..70b0af78105b424816bfc3b9a9b5a70fd037fc86 100644 (file)
@@ -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',
+       ],
 ];