this is my fly.toml file and this app is working on local development.
I think request can’t reach gRPC server and request is dropped fly.io proxy server.
Hi Seapy, another thing to try is fly ssh console into the instance running your application, and verify you can make requests to 0.0.0.0:8050. If that’s not working, it may mean that your application is listening on the lo interface, which won’t receive traffic.
If that’s the case, you’ll likely need to change something about how your application starts to ensure it is binding to the public interface and port 8050. In a go grpc application, for example, you’d want to make sure to call something like net.Listen("tcp", "0.0.0.0:8050").
I believe it instead should be: net.Listen("tcp", ":8050") since services.internal_port is 8050 according to the config toml you have originally shared.