Skip to content

Commit

Permalink
Allow matching <host>:*
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Marchaud <laurent@marchaud.com>
  • Loading branch information
Aluxima committed Jan 30, 2023
1 parent 15df88f commit f14a252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/envoy/boilerplate.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func makeVirtualHost(vhost *virtualHost, reselectionAttempts int64, defaultRetry
}
virtualHost := route.VirtualHost{
Name: "local_service",
Domains: []string{vhost.Host},
Domains: []string{vhost.Host, vhost.Host + ":*"},
Routes: []*route.Route{
{
Match: &route.RouteMatch{
Expand Down

0 comments on commit f14a252

Please sign in to comment.