The app is not listening on the expected address and will not be reachable by fly-proxy.
You can fix this by configuring your app to listen on the following addresses:
- 0.0.0.0:3000
How can I fix this warning?
The app is not listening on the expected address and will not be reachable by fly-proxy.
You can fix this by configuring your app to listen on the following addresses:
- 0.0.0.0:3000
How can I fix this warning?
You should configure your server to listen on 0.0.0.0:3000
. What language/framework is your app using?
It is using NodeJS
Then your code should look something like this:
app.listen(3000);