]> git.mxchange.org Git - friendica.git/blobdiff - static/settings.config.php
Fix IHTTPResult::getHeader/s()
[friendica.git] / static / settings.config.php
index bf74e782e4f42cad9524bce417fa8f1de0f085f1..96ae421ff0e746354c9e72d2b7c004f53dc973a8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -164,9 +164,13 @@ return [
                // Comma separated list of tags that are rejected.
                'relay_deny_tags' => '',
 
-               // relay_server (String)
-               // Address of the relay server where public posts should be send to.
-               'relay_server' => 'https://social-relay.isurf.ca',
+               // relay_directly (Boolean)
+               // Directly transmit content to relay subscribers without using a relay server
+               'relay_directly' => false,
+
+               // relay_scope (SR_SCOPE_NONE, SR_SCOPE_TAGS or SR_SCOPE_ALL)
+               // Defines the scope of accepted posts from the relay servers
+               'relay_scope' => SR_SCOPE_NONE,
 
                // relay_server_tags (String)
                // Comma separated list of tags for the "tags" subscription.
@@ -199,4 +203,11 @@ return [
        // Used in the admin settings to lock certain features
        'featurelock' => [
        ],
+
+       // Storage backend configuration
+       'storage' => [
+               // name (String)
+               // The name of the current used backend (default is Database)
+               'name' => 'Database',
+       ],
 ];