Thanks! Indeed, `http2_max_requests` does close the tcp connection;
BTW, I've confirmed that it is a bug of grpc-go. Thanks again!
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,283297,283304#msg-283304
___
nginx mailing list
nginx@nginx.org
Hey, genius
I've followed the official user guide to create a gRPC reverse proxy, config
as follow:
```
upstream grpcservers {
server 10.90.62.50:60080 weight=3;
server 10.90.62.51:60080 weight=3;
server 10.90.62.52:60080 weight=3;
keepalive 2000;
keepalive_timeout 120;
ke