Example (service 1):
caddy: domain.com
caddy.reverse_proxy: '{{upstreams 8080}}'
Example (service 2):
caddy: domain.com
caddy.handle_path: /v2/*
caddy.reverse_proxy: '{{upstreams 8080}}'
Generates the following config:
domain.com {
handle_path /v3/*
reverse_proxy 172.18.0.2:8080 172.18.0.4:80
}
Is this a bug or am I doing something wrong?