I’ve got this error in my logs : "instance refused connection. is your app listening on 0.0.0.0:5432? make sure it is not only listening on 127.0.0.1 (hint: look at your startup logs, servers often print the address they are listening on)" and I think it’s related (as I read in the docs that it was fly proxy that manages stop and restart of apps V2). I have no clue where to deal with this…
I see that you are having some issues with your app. Just wanted to say that you are correct in the sense that fly proxy is what manages the auto stop/start machines. I would take a look at this post here that was made and see if that helps-[error]instance refused connection..
Here are some docs for reference to your issue as well:
Hi,
Thx for your answer and your references, it helped!
I had some trouble with port config in my fly.toml [[services]] protocol = "tcp" internal_port = xxxx was defined twice (don’t remember why but anyway).
Deleting one of the two configs solves the issue.
Best,