我们可以在不依赖docker的情况下使用nginx代理进行gRPC-web集成吗?

时间:2019-01-30 12:09:46

标签: grpc-web

需要在没有docker的情况下使用NGINX

我曾尝试使用具有docker依赖项的envoy代理来使用gRPC-web集成,所以我搬到了NGINX,如何在没有docker依赖项的情况下使用NGINX?

2 个答案:

答案 0 :(得分:1)

由于grpc-web不直接支持nginx,因此我们可以在nginx的配置文件中进行以下破解,以同时使用grpc-webgrpc电话。

server {
    listen 1449 ssl http2;
    server_name `domain-name`;
    ssl_certificate `pem-file`; # managed by Certbot
    ssl_certificate_key `key-file`; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

    location / {

    #
    ## Any request with the content-type application/grpc+(json|proto|customType) will not enter the
    ## if condition block and make a grpc_pass while rest of the requests enters into the if block
    ## and makes a proxy_prass request. Explicitly grpc-web will also enter the if block.
    #

    if ($content_type !~ 'application\/grpc(?!-web)(.*)'){
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
            add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Transfer-Encoding,Custom-Header-1,X-Accept-Content-Transfer-Encoding,X-Accept-Response-Streaming,X-User-Agent,X-Grpc-Web,content-type,snet-current-block-number,snet-free-call-user-id,snet-payment-channel-signature-bin,snet-payment-type,x-grpc-web';
            add_header 'Access-Control-Max-Age' 1728000;
            add_header 'Content-Type' 'text/plain charset=UTF-8';
            add_header 'Content-Length' 0;
        proxy_pass http://reroute_url;
    }
    grpc_pass grpc://reroute_url;
    }
}

以上配置基于内容类型机制,每当grpc-web调用nginx时,内容类型将为application/grpc-web,而该内容类型不被nginx处理与grpc_pass

因此,只有内容类型为application/grpc+(proto|json|customType)的那些请求才能与grpc_pass一起使用,而其余请求将与proxy_pass一起使用。

答案 1 :(得分:0)

您可以查看dockerfile的功能,并且基本上可以自己在docker映像之外自己做:https://github.com/grpc/grpc-web/blob/master/net/grpc/gateway/docker/nginx/Dockerfile

主要是基本上运行make standalone-proxy,并将其作为./gConnector_static/nginx.sh运行。您将需要一个nginx.conf配置文件,以指定Nginx应该在哪里接收和转发gRPC-Web请求