nic-chen edited a comment on issue #1209: request help:  grpc proxy is not 
running
URL: 
https://github.com/apache/incubator-apisix/issues/1209#issuecomment-595614275
 
 
   We only support port 9443 proxy gRPC by default.
   When using port 9443 or other ssl ports, please ensure that the client 
request has tsl parameters.
   Here is the simplest gRPC-go example that skips certificate verification:
   
   我们默认只支持9443端口代理 gRPC 。
   使用9443端口或者其他ssl端口时,请确保客户端请求有带tsl相关参数。
   这里是一个最简单的,跳过证书验证的 gRPC-go 示例:
   
   
   `
       var tlsConf tls.Config
       tlsConf.InsecureSkipVerify = true
   
       creds := credentials.NewTLS(&tlsConf)
   
       creds = &errSignalingCreds{
           TransportCredentials: creds,
       }
   
       conn, err := grpc.Dial(address, grpc.WithBlock(), 
grpc.WithTransportCredentials(creds))
   
   `

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to