From 16833501a1004a5a661a729e4fd2dbcbeaecd1d5 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 16 Jan 2026 20:55:38 +0000 Subject: config: increase max_connections default from 2000 to 4096 Increases connection limit across all configuration sources: - src/config.rs: default_value_t = 4096 - docs/reference/configuration.md: updated default and examples - nix/module.nix: maxConnections default = 4096 - .env.example: updated default and comment This allows the relay to handle more concurrent connections and reduces the likelihood of connection exhaustion under normal load. The previous limit of 2000 was too conservative for production deployments. --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix') diff --git a/nix/module.nix b/nix/module.nix index 4117b6d..5debc9e 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -252,7 +252,7 @@ let maxConnections = mkOption { type = types.int; - default = 500; + default = 4096; description = "Maximum total connections to the relay"; }; -- cgit v1.2.3