4

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

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

4

2 回答 2

6

由于没有对grpc-webfrom的直接支持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;
    }
}

上面的配置基于 content-type 机制工作,每当grpc-web调用 nginx 时,content-type 都会是application/grpc-web,并且这个 content-type 不会被 nginx 处理grpc_pass

因此,只有那些具有 content-type的请求application/grpc+(proto|json|customType)适用,grpc_pass而其余请求适用proxy_pass.

于 2019-10-11T05:24:37.907 回答
2

你可以看看 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 请求

于 2019-03-26T03:11:49.190 回答