I’m using LiteFS proxy, and I see a lot of error [PC01] instance refused connection. is your app listening on 0.0.0.0:3000? 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) on my app.
When launching my app, I can see that it’s starting on the right port ([remix-serve] http://localhost:8081)
In my litefs.yml file, I have the following values:
proxy:
# matches the internal_port in fly.toml
addr: ':8080'
target: 'localhost:8081'
db: '${DATABASE_FILENAME}'
What is this error and where does the 3000 come from?
Odd… It shouldn’t be possible to bypass the Fly edge proxy, since that’s how requests to app-name.fly.dev reach your Machine in the first place.
The ss output looks correct, as well.
Do the machine IDs in the log match the ones shown in fly m list?
Also, the Fly.io platform as a whole sometimes gets confused by redundant [[services]]/[http_service] blocks. Perhaps you could post your full fly.toml file?