diff options
author | Alan Pearce | 2023-07-08 20:18:00 +0200 |
---|---|---|
committer | Alan Pearce | 2023-07-08 20:18:00 +0200 |
commit | f8a4c0497d145a597f6f7ec6f9bebc105fcd04f8 (patch) | |
tree | d61ab5b56af28fc4748ad3942e4189efb5e5a180 | |
parent | 5c20728ac9ca856218436c5cffb75727c8d9cb49 (diff) | |
download | website-f8a4c0497d145a597f6f7ec6f9bebc105fcd04f8.tar.lz website-f8a4c0497d145a597f6f7ec6f9bebc105fcd04f8.tar.zst website-f8a4c0497d145a597f6f7ec6f9bebc105fcd04f8.zip |
Increase fly connection limits
-rw-r--r-- | fly.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fly.toml b/fly.toml index 7299682..4b06784 100644 --- a/fly.toml +++ b/fly.toml @@ -16,8 +16,8 @@ primary_region = "ams" protocol = "tcp" [services.concurrency] type = "connections" - hard_limit = 25 - soft_limit = 20 + hard_limit = 200 + soft_limit = 100 [[services.ports]] handlers = ["http"] port = 80 |