[Solved]
I would like to change services concurrency to be “requests” instead of “connections”
The application was created using launch, which apparently uses “connections” as the default – I don’t see how to use a specific toml when launching.
[services.concurrency]
type = "requests"
hard_limit = 25
soft_limit = 20
[http.services.concurrency]
type = "requests"
hard_limit = 25
soft_limit = 20
When using a Docker image, it is sufficient to do a fly deploy without a prior create, and specify the toml file as an argument (for some reason there is no config argument during launch which is what the documentation puts forward).
After doing an initial deploy with the toml, the concurrency arguments do show up in fly config show