fix: increase connection limit per ip

This commit is contained in:
Rekryt
2025-07-10 18:35:12 +03:00
parent a04db988d2
commit 7235eebf53

View File

@@ -29,7 +29,7 @@ final class Server implements AppModuleInterface {
private static Server $_instance; private static Server $_instance;
private int $connectionLimit = 1024; private int $connectionLimit = 1024;
private int $connectionPerIpLimit = 10; private int $connectionPerIpLimit = 200;
/** /**
* @param ?HttpServer $httpServer * @param ?HttpServer $httpServer