Process Flow - gRPC proxying
Client sends gRPC request
Nginx receives request
Nginx checks grpc_pass config
Nginx forwards request to gRPC backend
Backend processes request
Backend sends gRPC response
Nginx forwards response to client
Client receives response
This flow shows how Nginx receives a gRPC request, forwards it to the backend server using grpc_pass, and then sends the backend's response back to the client.