Skip to content

Commit

Permalink
update fly.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zllovesuki committed Aug 29, 2023
1 parent 8695ad2 commit 8c7e4bd
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -1,53 +1,57 @@
# fly.toml file generated for specter on 2023-01-28T18:13:50-08:00
# fly.toml app configuration file generated for specter on 2023-08-03T11:22:38-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = "specter"

kill_timeout = 180
primary_region = "den"
kill_signal = "SIGINT"
kill_timeout = "3m0s"

[build]
dockerfile = "Dockerfile.flyio"

[env]
GOMEMLIMIT = "200MiB"

# flyctl volumes create kv --size 1
[mounts]
[[mounts]]
source = "kv"
destination = "/data/kv"
processes = ["app"]

[[services]]
internal_port = 443
protocol = "udp"
internal_port = 443

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

[[services]]
internal_port = 443
protocol = "tcp"
internal_port = 443

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

[[services]]
internal_port = 53
protocol = "udp"
internal_port = 53

[[services.ports]]
port = "53"
port = 53

[[services]]
internal_port = 53
protocol = "tcp"
internal_port = 53

[[services.ports]]
port = "53"
port = 53

[[services]]
internal_port = 80
protocol = "tcp"
internal_port = 80

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

0 comments on commit 8c7e4bd

Please sign in to comment.