X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fsettings.config.php;h=96ae421ff0e746354c9e72d2b7c004f53dc973a8;hb=0cafa871f1611f283a0f22ec3bb4e3c610028afc;hp=db898c3323389433ea4772cf880be198c9e9ac39;hpb=501e0b398f1004196836730c9e09179a42a23b95;p=friendica.git diff --git a/static/settings.config.php b/static/settings.config.php index db898c3323..96ae421ff0 100644 --- a/static/settings.config.php +++ b/static/settings.config.php @@ -1,6 +1,6 @@ '', + // add_missing_posts (boolean) + // Checks for missing entries in "post", "post-thread" or "post-thread-user" and creates them + 'add_missing_posts' => false, + // allowed_themes (Comma-separated list) // Themes users can change to in their settings. 'allowed_themes' => 'frio,quattro,vier,duepuntozero,smoothly', @@ -160,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. @@ -195,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', + ], ];