added toml

This commit is contained in:
JBB0807 2025-04-21 10:17:21 -07:00
parent c3efa45873
commit e2a92efec6

28
auth-service/fly.toml Normal file
View file

@ -0,0 +1,28 @@
# fly.toml app configuration file generated for snakebyte on 2025-01-04T01:06:05-08:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "auth-service"
primary_region = "sea"
[env]
PORT = "8080"
[[services]]
internal_port = 8080
protocol = "tcp"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
interval = "10s"
timeout = "2s"
grace_period = "5s"
restart_limit = 0