mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 16:47:22 +01:00
limit connections to 1000
This commit is contained in:
parent
d328056b9b
commit
2943e0964e
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ public class Program
|
|||
webBuilder.UseStartup<Startup>();
|
||||
webBuilder.ConfigureKestrel(opt =>
|
||||
{
|
||||
opt.Limits.MaxConcurrentConnections = 5000;
|
||||
opt.Limits.MaxConcurrentConnections = 1000;
|
||||
});
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue