Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
auburnsummer committed Dec 21, 2023
1 parent 0b6cb96 commit 5215d17
Showing 1 changed file with 31 additions and 19 deletions.
50 changes: 31 additions & 19 deletions orchard/package/fly.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,48 @@
# fly.toml file generated for orchard on 2022-04-03T10:50:15+10:00

app = "orchard"
# fly.toml app configuration file generated for orchardb on 2023-12-21T07:04:00Z
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = "orchardb"
primary_region = "lax"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []

[env]
kill_timeout = "5s"

[experimental]
allowed_public_ports = []
auto_rollback = true


[build]

[deploy]
strategy = "rolling"

[[services]]
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ["app"]
protocol = "tcp"
script_checks = []

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

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

[[services.ports]]
handlers = ["tls", "http"]
port = 443
handlers = ["tls", "http"]
[services.concurrency]
type = "connections"
hard_limit = 25
soft_limit = 20

[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 1024

0 comments on commit 5215d17

Please sign in to comment.