From 29fa5b32b87d8944a0e068b247c83b6530f3b0d2 Mon Sep 17 00:00:00 2001 From: Michele Marcucci Date: Wed, 30 Oct 2024 17:09:18 +0100 Subject: [PATCH] default maxConnections to 64 --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index cfa278f..96f04bd 100644 --- a/src/utils.js +++ b/src/utils.js @@ -219,7 +219,7 @@ module.exports.auth = { if (settings.nodeMaxConnections) conf += `\nmaxconnections=${settings.nodeMaxConnections}`; - else conf += '\nmaxconnections=32'; + else conf += '\nmaxconnections=64'; if (settings.nodeAllowLan) { const lanNetwork = this.getSystemNetwork();