Hi Sergey,
First thanks for your reply.
What I don't really understand is, shouldn't nginx be more strict by
default with the requests that are passed to grpc backends? I have been
reading a little bit about the GRPC protocol, and it's supposed to just
use POST requests (I might be wrong about t
> On 7 Aug 2020, at 17:18, Víctor Enríquez wrote:
>
> Hi,
>
> So we have a service exposing a grpc interface under a certain location
> and we are using nginx in front of it. The config looks like the
> following:
>
> upstream grpcservers {
> server fqdn:port;
> server fqdn:port;
> }
>
> ..
Hi,
So we have a service exposing a grpc interface under a certain location
and we are using nginx in front of it. The config looks like the
following:
upstream grpcservers {
server fqdn:port;
server fqdn:port;
}
...
server {
listen port ssl http2;
client_max_body_size 15m;
server_nam