]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Remove test code
[friendica.git] / static / defaults.config.php
index 28b6fd6aca7591db127bf6fb491ee3e92c841c9c..01cd24f04b3a3c9ead7aa2d74f8c30bb9d0867a6 100644 (file)
@@ -164,6 +164,10 @@ 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',
@@ -416,6 +420,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.
+               'max_recursion_depth' => 10,
+
                // maximagesize (Integer)
                // Maximum size in bytes of an uploaded photo.
                'maximagesize' => 800000,
@@ -635,6 +643,7 @@ return [
        '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)
@@ -665,8 +674,20 @@ return [
                // Logs every call to /inbox as a JSON file in Friendica's temporary directory
                'ap_inbox_log' => 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,
        ]
 ];