X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fsettings.config.php;h=ea7558e5f751ed9df074330a89495037a64080dd;hb=56e88d2c4c59a8a44ae8cf31f2c18fac325dc740;hp=e999b78c4307200f53e89a9aad8a11c74619d265;hpb=cc5e5be931bc21e44d0cb26778e8cc15be924e41;p=friendica.git diff --git a/static/settings.config.php b/static/settings.config.php index e999b78c43..ea7558e5f7 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' => 'quattro,vier,duepuntozero,smoothly', + 'allowed_themes' => 'frio,quattro,vier,duepuntozero,smoothly', + + // cache_contact_avatar (Boolean) + // Cache versions of the contact avatars. Uses a lot of storage space + 'cache_contact_avatar' => true, // curl_timeout (Integer) // Value is in seconds. Set to 0 for unlimited (not recommended). @@ -132,6 +140,10 @@ return [ // If you don't want to set a maximum length, set to -1. 'max_image_length' => -1, + // max_receivers (Integer) + // The maximum number of displayed receivers of posts + 'max_receivers' => 10, + // maximagesize (Integer) // Maximum size in bytes of an uploaded photo. 'maximagesize' => 800000, @@ -140,10 +152,6 @@ return [ // Maximum system load before delivery and poll processes are deferred. 'maxloadavg' => 20, - // maxloadavg_frontend (Integer) - // Maximum system load before the frontend quits service - default 50. - 'maxloadavg_frontend' => 50, - // min_memory (Integer) // Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated). 'min_memory' => 0, @@ -156,27 +164,37 @@ return [ // Periodically (once an hour) run an "optimize table" command for cache tables 'optimize_tables' => false, - // relay_server (String) - // Address of the relay server where public posts should be send to. - 'relay_server' => 'https://social-relay.isurf.ca', + // relay_deny_tags (String) + // Comma separated list of tags that are rejected. + 'relay_deny_tags' => '', + + // 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 (Relay::SCOPE_NONE, Relay::SCOPE_TAGS or Relay::SCOPE_ALL) + // Defines the scope of accepted posts from the relay servers + 'relay_scope' => '', + + // relay_server_tags (String) + // Comma separated list of tags for the "tags" subscription. + 'relay_server_tags' => '', // relay_user_tags (Boolean) // 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' => '', // theme (String) // System theme name. - 'theme' => 'vier', + 'theme' => 'frio', // url (String) // The fully-qualified URL of this Friendica node. @@ -187,4 +205,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', + ], ];