Hello lovely people of the fly.io community!
I’ve been giving fly a try today but haven’t been able to get my app up and running and I’m out of knowledge what I’m doing wrong.
My fly.toml currently looks like this here:
# fly.toml file generated for website-api on 2022-07-13T18:31:36+02:00
app = "website-api"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[env]
PORT=8080
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
http_checks = []
internal_port = 8080
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"
My app is running on port 8080 and the health checks report back as green, but the app itself is not reachable.
The logs in monitoring show this here:
Does anyone have a clue on what I’m doing wrong?
I’m looking forward to your posts.
Thank you very much and have a joyful day!
Best wishes
Tom