I'm migrating Nginx to Envoy and I couldn't figure out how to replace those settings:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
I have read Envoy's document about IT Transprency, but I still couldn't figure out how to config it. When I try to test the example included in the above link, I got an error:
invalid value Invalid type URL, unknown type: envoy.extensions.transport_sockets.proxy_protocol.v3.ProxyProtocolUpstreamTransport for type Any)
Appreciate it if someone can share with me a real example to support above 3 proxy_set_header equivalency in Envoy.