Forked from reetasingh/envoy_http_dynamic_forward_proxy.yaml
Created
August 1, 2023 12:34
-
-
Save ca4ti/48bb0584ffff7f8fd776f255f2a556f2 to your computer and use it in GitHub Desktop.
Envoy to operate as an HTTP dynamic forward proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin: | |
access_log_path: /tmp/admin_access.log | |
address: | |
socket_address: | |
address: 127.0.0.1 | |
protocol: TCP | |
port_value: 9901 | |
static_resources: | |
listeners: | |
- name: listener_0 | |
address: | |
socket_address: | |
address: 0.0.0.0 | |
protocol: TCP | |
port_value: 10001 | |
filter_chains: | |
- filters: | |
- name: envoy.filters.network.http_connection_manager | |
typed_config: | |
'@type': type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager | |
stat_prefix: egress_http | |
http2_protocol_options: | |
allow_connect: true | |
upgrade_configs: | |
- upgrade_type: CONNECT | |
route_config: | |
name: local_route | |
virtual_hosts: | |
- name: http | |
domains: | |
- '*' | |
routes: | |
- match: | |
prefix: / | |
route: | |
cluster: dynamic_forward_proxy_cluster | |
typed_per_filter_config: | |
envoy.filters.http.dynamic_forward_proxy: | |
'@type': type.googleapis.com/envoy.extensions.filters.http.dynamic_forward_proxy.v3.PerRouteConfig | |
host_rewrite_header: X-Host-Port | |
http_filters: | |
- name: envoy.filters.http.dynamic_forward_proxy | |
typed_config: | |
'@type': type.googleapis.com/envoy.extensions.filters.http.dynamic_forward_proxy.v3.FilterConfig | |
dns_cache_config: | |
name: dynamic_forward_proxy_cache_config | |
dns_lookup_family: V4_ONLY | |
- name: envoy.filters.http.router | |
clusters: | |
- name: dynamic_forward_proxy_cluster | |
connect_timeout: 1s | |
lb_policy: CLUSTER_PROVIDED | |
cluster_type: | |
name: envoy.clusters.dynamic_forward_proxy | |
typed_config: | |
'@type': type.googleapis.com/envoy.extensions.clusters.dynamic_forward_proxy.v3.ClusterConfig | |
dns_cache_config: | |
name: dynamic_forward_proxy_cache_config | |
dns_lookup_family: V4_ONLY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment