X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=b0832d88f35f4bfc6358a5534286744e2e17ef11;hb=c07573e25f7c53146a18a4257b90ce7fe6c0baab;hp=11731f214894f18d937ed4e65f019cbfe5765ea3;hpb=96147d331b2ff6f748a756071de939ba90dce65e;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index 11731f2148..b0832d88f3 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -32,6 +32,11 @@ return [ // Can contain the port number with the syntax "hostname:port". 'hostname' => '', + // port (Integer) + // Port of the database server. + // Can be used instead of adding a port number to the hostname + 'port' => null, + // user (String) // Database user name. Please don't use "root". 'username' => '', @@ -182,7 +187,8 @@ return [ // dbclean-expire-limit (Integer) // This defines the number of items that are to be deleted in a single call. - // Reduce this value when you are getting memory issues. + // Reduce this value when you are getting lock issues. + // A value of 0 disables the deletion process. 'dbclean-expire-limit' => 1000, // diaspora_test (Boolean) @@ -294,6 +300,16 @@ return [ // Sets the logging adapter of Friendica globally (monolog, syslog, stream) 'logger_config' => 'stream', + // maintenance_start (String) + // Start of the window for the daily maintenance cron call. + // The system timezone is used when no timezone is defined here. + 'maintenance_start' => '01:00 +00:00', + + // maintenance_end (String) + // End of the window for the daily maintenance cron call + // The system timezone is used when no timezone is defined here. + 'maintenance_end' => '03:00 +00:00', + // max_batch_queue (Integer) // Maximum number of batched queue items for a single contact before subsequent messages are discarded. 'max_batch_queue' => 1000,