Skip to content

Commit

Permalink
remove hard limit
Browse files Browse the repository at this point in the history
  • Loading branch information
btoews committed Jul 22, 2024
1 parent 912d613 commit 465e09d
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,26 @@ kill_timeout = 5
processes = []

[experimental]
auto_rollback = true
auto_rollback = true

[[services]]
internal_port = 8080
processes = ["app"]
protocol = "tcp"
internal_port = 8080
processes = ["app"]
protocol = "tcp"

[[services.ports]]
port = 80
[[services.ports]]
port = 80

[[services.ports]]
handlers = ["tls"]
port = 443
[[services.ports]]
handlers = ["tls"]
port = 443

[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"
[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"

[services.concurrency]
type = "connections"
hard_limit = 750
soft_limit = 500
[services.concurrency]
type = "connections"
soft_limit = 500

0 comments on commit 465e09d

Please sign in to comment.