Jacks Gong
Jacks Gong

Reputation: 694

How can I use nginx 1.9.5 as a reverse proxy with gRPC?

I want to

gRPC seems to be the best choice and I want use NGINX as my reverse proxy and loading balancing, I could not find any documentation to figure out how to use NGINX with gRPC Java, does anyone know?


I saw the gRPC PHP has already supported NGINX: https://github.com/grpc/grpc/tree/master/src/php#use-the-grpc-php-extension-with-nginxphp-fpm

But I also saw there is an issue said it is in the process of submitting a 3rd party module in NGINX for gRPC support, and there is a ticket on NGINX means we can't write HTTP/2 NGINX proxy module for gRPC, and I also saw nginx does not support the full HTTP/2 specs, gRPC does not work through it

I'm confused about that, why do some posts say gRPC PHP works but in other posts it says it can't.

Upvotes: 5

Views: 4338

Answers (2)

Ben Neighbour
Ben Neighbour

Reputation: 75

Yeah, nowdays, gRPC/HTTP2 with or without TLS are indeed fully supported on NGINX, as long as you have version 1.13.9 (if you just install the docker image with either alpine or latest tags then it'll be the right version).

As of (at least) late 2020 there is full support for it. Here's a link to their official Documentation:

https://www.nginx.com/blog/nginx-1-13-10-grpc/

Upvotes: 0

csalazar
csalazar

Reputation: 756

Not on nginx, but I just published a grpc-proxy written in Go. It's lightweight and configurable, and there is a docker image available.

Upvotes: 4

Related Questions