如何在 Nginx 中配置 gRPC 的代理
:50051; nginx路由gRPC请求 如果后端有多个gRPC服务端,其中每个服务端都是提供不同的gRPC服务。这种情况可以使用一个nginx接收客户端请求,然后根据不同的路径分发路由到指定的gRPC服务器。使用location区分: location /helloworld.Greeter { grpc_pass grpc://192.168.20.11:50051; } location /helloworld.Dispatcher { grpc_pass grpc://192.168.20.21:50052; } location / { root html; index index.html index.htm; } 对gRPC请求做负载均衡 在后端有多个gRPC服务器,它们都是同一个...阅读全文