参考文档
可以使用nginx转发各个服务,相较与服务注册发现,是另一种可选实现方式。
location /helloworld.Greeter {
grpc_pass grpc://127.0.0.1:50051;
}
location /helloworld.Dispatcher {
grpc_pass grpc://127.0.0.1:50052;
}
示例代码
参考文档
可以使用nginx转发各个服务,相较与服务注册发现,是另一种可选实现方式。
location /helloworld.Greeter {
grpc_pass grpc://127.0.0.1:50051;
}
location /helloworld.Dispatcher {
grpc_pass grpc://127.0.0.1:50052;
}
示例代码