Thanks,Maxim
Have a nice day
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,279261,279283#msg-279283
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Thanks, Maxim,
I have another question,
If there are multiple grpc clients in the front,
Does nginx reuse the same connection to the backend grpc server?
By my test, it seems not.
In my opinion, http2 can support that.
And it can save resourses by avoid creating new tcp connection for each grpc
req
Hello everyone,
In the latest version(1.13.10)
Does ‘grpc_pass’ support the ‘keepalive’ option ?
My configuration is:
...
http {
...
upstream backend {
server localhost:50051;
keepalive 300;
}
server {
listen 80 http2;
location / {
grpc_p