From b54ea254c2dfffc7743fb86725229d6ac10a6328 Mon Sep 17 00:00:00 2001 From: Rekryt Date: Fri, 13 Feb 2026 11:08:01 +0300 Subject: [PATCH] feat: increase connectionPerIpLimit --- src/Infrastructure/API/Server.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Infrastructure/API/Server.php b/src/Infrastructure/API/Server.php index 700070c..25ff17f 100644 --- a/src/Infrastructure/API/Server.php +++ b/src/Infrastructure/API/Server.php @@ -28,8 +28,8 @@ use function OpenCCK\getEnv; final class Server implements AppModuleInterface { private static Server $_instance; - private int $connectionLimit = 1024; - private int $connectionPerIpLimit = 200; + private int $connectionLimit = 100000; + private int $connectionPerIpLimit = 100000; /** * @param ?HttpServer $httpServer