docs: Specify port in host for example (#8167)

This example shows a TLS enabled ingress config on a non-https port.
Currently, that means we require the port to be specified in one of the
host entries to route traffic.
pull/8177/head
Chris Piraino 4 years ago committed by GitHub
parent 20a6e1c638
commit 2904cdac36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -90,11 +90,11 @@ Listeners = [
Services = [
{
Name = "api"
Hosts = ["foo.example.com"]
Hosts = ["foo.example.com", "foo.example.com:4567"]
},
{
Name = "web"
Hosts = ["website.example.com"]
Hosts = ["website.example.com", "website.example.com:4567"]
}
]
}

Loading…
Cancel
Save