Skip to content

Commit

Permalink
Add initial version of fly.toml for deployment to fly.io
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidPratten committed Mar 8, 2023
1 parent ece10be commit d123808
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# fly.toml file generated for shy-feather-8158 on 2023-03-08T21:24:24+11:00

app = "jetisu"
kill_signal = "SIGINT"
kill_timeout = 5

[build]
image = "ghcr.io/davidpratten/jetisu:latest"

[env]

[experimental]
auto_rollback = true

[[services]]
http_checks = []
internal_port = 8888
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 25
soft_limit = 20
type = "connections"

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

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

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

0 comments on commit d123808

Please sign in to comment.