default maxConnections to 64

This commit is contained in:
Michele Marcucci 2024-10-30 17:09:18 +01:00
parent 552a74a289
commit 29fa5b32b8

View File

@ -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();