I understand that the question is more appropriate for nginx group, but 
still... Does anyone have a _working_ nginx.conf file that does the job?
I ended up with 404 from nginx sending gRPC requests (yes, valid requests, 
verified) with the following nginx.conf:

events {
  worker_connections  4096;  ## Default: 1024
}

http {
  upstream ip-10-100-30-92 {
    server ip-10-100-30-147:50101;
    server ip-10-100-130-12:50101;
  }

  server {
    listen 50101;
    server_name ip-10-100-30-92;
    location / {
      proxy_pass http://ip-10-100-30-92;
    }
  }
}


This file produces 404 response and a line in /var/log/nginx/access.log:

192.168.13.238 - - [29/Aug/2017:16:56:34 +0000] "PRI * HTTP/2.0" 400 173 
"-" "-"


Actually, I try to use SSL, and a _working_ example of nginx.conf would be 
_really_ appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/308d5a97-5352-4da5-be69-9ab192aa38a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to