X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=db440d2a96dbf4470ef31040684310136f4bb2a1;hb=6ec812208f815e8c367c81c765befcabb13a0f0f;hp=c31446cfefad7a5198b17ff8e2b184111e04e13c;hpb=b1d31471ecc0c6ac693459afc7a309d9a1afabe0;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index c31446cfef..db440d2a96 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -37,6 +37,11 @@ return [ // Can be used instead of adding a port number to the hostname 'port' => null, + // socket (String) + // Socket of the database server. + // Can be used instead of adding a socket location to the hostname + 'socket' => '', + // user (String) // Database user name. Please don't use "root". 'username' => '', @@ -113,10 +118,18 @@ return [ // chose "Remember me" when logging in is considered logged out. 'auth_cookie_lifetime' => 7, + // avatar_cache (Boolean) + // Cache avatar pictures as files (experimental) + 'avatar_cache' => false, + // big_emojis (Boolean) // Display "Emoji Only" posts in big. 'big_emojis' => false, + // bulk_delivery (Boolean) + // Delivers AP messages in a bulk (experimental) + 'bulk_delivery' => false, + // block_local_dir (Boolean) // Deny public access to the local user directory. 'block_local_dir' => false, @@ -494,12 +507,24 @@ return [ // If enabled, multiple linefeeds in items are stripped to a single one. 'remove_multiplicated_lines' => false, + // runtime_ignore (Array) + // List of ignored commands for the runtime logging. + 'runtime_ignore' => [], + + // runtime_loglimit (Integer) + // The runtime is logged, When the program execution time is higher than this value. + 'runtime_loglimit' => 0, + // sendmail_params (Boolean) // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails. // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address. // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address. 'sendmail_params' => true, + // set_creation_date (Boolean) + // When enabled, the user can enter a creation date when composing a post. + 'set_creation_date' => false, + // show_global_community_hint (Boolean) // When the global community page is enabled, use this option to display a hint above the stream, that this is a collection of all public top-level postings that arrive on your node. 'show_global_community_hint' => false,