nginx-grpc
nginx-grpc copied to clipboard
gRPC using nginx‘s ngx_http_grpc_module module
nginx-grpc
测试NGINX的v1.13.10原生支持gRPC通信
参考文档
可以使用nginx转发各个服务,相较与服务注册发现,是另一种可选实现方式。
location /helloworld.Greeter {
grpc_pass grpc://127.0.0.1:50051;
}
location /helloworld.Dispatcher {
grpc_pass grpc://127.0.0.1:50052;
}
示例代码
- 服务定义proto文件
- nginx配置
- gRPC服务端代码
- gRPC客户端代码
- gRPC压力测试代码