I checked the current implementation, for now apisix seems only support grpc proxy with ssl.
In my case, we want to try apisix to balance grpc traffic with insecure mode in intranet environment.
Is there any reason not to support grpc without ssl enabled? Looking forward to your reply :-)
{% for _, port in ipairs(node_listen) do %}
listen {* port *} {% if enable_reuseport then %} reuseport {% end %};
{% end %}
{% if ssl.enable then %}
{% for _, port in ipairs(ssl.listen_port) do %}
listen {* port *} ssl {% if ssl.enable_http2 then %} http2 {% end %} {% if enable_reuseport then %} reuseport {% end %};
{% end %}
{% end %}
I checked the current implementation, for now apisix seems only support grpc proxy with ssl.
In my case, we want to try apisix to balance grpc traffic with insecure mode in intranet environment.
Is there any reason not to support grpc without ssl enabled? Looking forward to your reply :-)