需要在没有 docker 的情况下使用 NGINX
我尝试使用具有 docker 依赖项的 envoy 代理使用 gRPC-web 集成,所以我搬到了 NGINX,如何在没有 docker 依赖项的情况下使用 NGINX?
需要在没有 docker 的情况下使用 NGINX
我尝试使用具有 docker 依赖项的 envoy 代理使用 gRPC-web 集成,所以我搬到了 NGINX,如何在没有 docker 依赖项的情况下使用 NGINX?
由于没有对grpc-web
from的直接支持nginx
,我们可以在 nginx 的配置文件中进行以下修改,以同时使用grpc-web
和grpc
调用。
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
.
你可以看看 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 请求