Increase connections

- Use the default value of `256 * 1024` for the concurrency limit, this
will mean that the server will be able to handle more connections.
This commit is contained in:
Gusted 2022-07-03 12:25:46 +02:00
parent 6dedd55eb3
commit 44c50a4987
No known key found for this signature in database
GPG key ID: FD821B732837125F

View file

@ -21,7 +21,6 @@ func SetupServer(handler fasthttp.RequestHandler) *fasthttp.Server {
NoDefaultServerHeader: true,
NoDefaultDate: true,
ReadTimeout: 30 * time.Second, // needs to be this high for ACME certificates with ZeroSSL & HTTP-01 challenge
Concurrency: 1024 * 32, // TODO: adjust bottlenecks for best performance with Gitea!
}
}