The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Assuming you want to have one 'catch-all' or default route in your Envoy Proxy, how do you configure Envoy? The docs are a bit sparse on exactly what you could do here.
Let's assume you have two virtual machines on your dev laptop: serviceProxy and proxyTarget.
You can use the following envoy.conf to achieve the goal.
# serviceProxy: 192.168.127.10:{10000,9901}
# proxyTarget: 192.168.127.11:80
#
admin:
access_log_path: /tmp/admin_access.log
address:
socket_address: { address: 0.0.0.0, port_value: 9901 }
static_resources:
listeners:
- name: catch_all_proxy_rule
address:
socket_address: { address: 0.0.0.0, port_value: 10000 }
filter_chains:
- filters:
- name: envoy.http_connection_manager
config:
stat_prefix: ingress_proxyTarget
route_config:
name: default_route
virtual_hosts:
- name: default_vhost
domains: ["*"]
routes:
- match: { prefix: "" }
# route: { host_rewrite: proxyTarget.local, cluster: proxyTarget }
route: { cluster: proxyTarget }
http_filters:
- name: envoy.router
clusters:
- name: proxyTarget
connect_timeout: 0.12s
type: LOGICAL_DNS
# Comment out the following line to test on v6 networks
dns_lookup_family: V4_ONLY
lb_policy: ROUND_ROBIN
hosts: [{ socket_address: { address: 192.168.127.11, port_value: 80 }}]
Hi community 👋, Here is another monthly roundup of the partner-organized events in July 2022. If there is any event missing please let me know in the comments below 🙏 If you're looking for Atla...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.