File tree 4 files changed +168
-0
lines changed
4 files changed +168
-0
lines changed Original file line number Diff line number Diff line change
1
+ static_resources :
2
+
3
+ listeners :
4
+ - name : listener_0
5
+ address :
6
+ socket_address :
7
+ address : 0.0.0.0
8
+ port_value : 10000
9
+ filter_chains :
10
+ - filters :
11
+ - name : envoy.filters.network.http_connection_manager
12
+ typed_config :
13
+ " @type " : type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
14
+ stat_prefix : ingress_http
15
+ access_log :
16
+ - name : envoy.access_loggers.stdout
17
+ typed_config :
18
+ " @type " : type.googleapis.com/envoy.extensions.access_loggers.stream.v3.StdoutAccessLog
19
+ http_filters :
20
+ - name : envoy.filters.http.router
21
+ typed_config :
22
+ " @type " : type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
23
+ route_config :
24
+ name : local_route
25
+ virtual_hosts :
26
+ - name : local_service
27
+ domains : ["*"]
28
+ routes :
29
+ - match :
30
+ prefix : " /"
31
+ route :
32
+ host_rewrite_literal : www.envoyproxy.io
33
+ cluster : service_envoyproxy_io
34
+
35
+ clusters :
36
+ - name : service_envoyproxy_io
37
+ type : LOGICAL_DNS
38
+ # Comment out the following line to test on v6 networks
39
+ dns_lookup_family : V4_ONLY
40
+ load_assignment :
41
+ cluster_name : service_envoyproxy_io
42
+ endpoints :
43
+ - lb_endpoints :
44
+ - endpoint :
45
+ address :
46
+ socket_address :
47
+ address : www.envoyproxy.io
48
+ port_value : 443
49
+ transport_socket :
50
+ name : envoy.transport_sockets.tls
51
+ typed_config :
52
+ " @type " : type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext
53
+ sni : www.envoyproxy.io
Original file line number Diff line number Diff line change
1
+ admin :
2
+ address :
3
+ socket_address :
4
+ address : 127.0.0.1
5
+ port_value : 9902
You can’t perform that action at this time.
0 commit comments