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.
This commit is contained in:
Chris Piraino 2020-06-23 14:41:51 -05:00 committed by GitHub
parent 20a6e1c638
commit 2904cdac36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"]
}
]
}