~siegfriedehret/nyrst.tools

afb33d8a74ef89f8ebb12010243e3e50eab38f15 — Siegfried Ehret 2 years ago 330bc17
🔧 add fly config
1 files changed, 43 insertions(+), 0 deletions(-)

A fly.toml
A fly.toml => fly.toml +43 -0
@@ 0,0 1,43 @@
# fly.toml file generated for nyrstdottools on 2022-02-23T10:53:39+01:00

app = "nyrstdottools"

kill_signal = "SIGINT"
kill_timeout = 5
processes = []

[build]
  builder = "heroku/buildpacks:20"

[env]
  PORT = "8080"

[experimental]
  allowed_public_ports = []
  auto_rollback = true

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

  [services.concurrency]
    hard_limit = 25
    soft_limit = 20
    type = "connections"

  [[services.ports]]
    handlers = ["http"]
    port = 80

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

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