diff --git a/auth-service/fly.toml b/auth-service/fly.toml new file mode 100644 index 0000000..a1099ec --- /dev/null +++ b/auth-service/fly.toml @@ -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 \ No newline at end of file