-
I checked the dynamic-forward-proxy function in the document below and confirmed that it is working properly. https://gateway.envoyproxy.io/docs/tasks/traffic/backend/#dynamic-forward-proxy However, when I tried to use dynamic-forward-proxy as tls passthrough for HTTPS destinations, it did not work.
So I'm wondering if it's possible to use dynamic-forward-proxy for HTTPS destinations with TLS passthrough (encryption via final destination's certificate) rather than TLS termination. Thank you for your help! cf) The backend with TLS Passthrough to a single HTTPS destination worked fine. (I wonder if the dynamic-forward-proxy approach also supports this kind of communication.)
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Unless I'm missing what you are asking... this is what I can find:
If you require dynamic routing with TLS passthrough (i.e., SNI-based dynamic routing at Layer 4 without TLS termination), I don't believe that to be supported with DFP. You can only use TLS passthrough with defined backends. If you need SNI-based dynamic TCP proxying, you may want to follow the progress of the SNI dynamic forward proxy in Envoy core, but it is not production-ready and not available in Envoy Gateway [SNI dynamic forward proxy]. |
Beta Was this translation helpful? Give feedback.
Unless I'm missing what you are asking... this is what I can find:
If you require dynamic routing with TLS passthrough (i.e., SNI-based dynamic routing at Layer 4 without TLS termination), I don't believe that to be supported with DFP. You can only use TLS passthrough with defined backends.
If you need SNI-based dynamic TCP proxying, you may want to follow the pr…