X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fsettings.config.php;h=5d9b430b190ee1e1f5fcef48d7cf435f4c6495ae;hb=ef7c543634ee5f93d0b2d8e5ccb736859726385c;hp=c1c7e7bc8879e5a767bb64107d6bac8e9b31c4b9;hpb=054c301ef0345c4ff9f35cfd08717757eab17b9d;p=friendica.git diff --git a/static/settings.config.php b/static/settings.config.php index c1c7e7bc88..5d9b430b19 100644 --- a/static/settings.config.php +++ b/static/settings.config.php @@ -164,9 +164,17 @@ 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', + // proxify_content (Boolean) + // Use the proxy functionality for fetching external content + 'proxify_content' => true, + + // 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. @@ -176,12 +184,6 @@ return [ // If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags". 'relay_user_tags' => true, - // rino_encrypt (Integer) - // Server-to-server private message encryption (RINO). - // Encryption will only be provided if this setting is set to a non zero value on both servers. - // Set to 0 to disable, 2 to enable, 1 is deprecated but won't need mcrypt. - 'rino_encrypt' => 2, - // temppath (String) // Custom temporary file directory 'temppath' => '', @@ -199,4 +201,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', + ], ];