diff --git a/examples/http-header-filter/README.md b/examples/http-header-filter/README.md index 6267b7f73d..feea0866e6 100644 --- a/examples/http-header-filter/README.md +++ b/examples/http-header-filter/README.md @@ -64,7 +64,7 @@ Headers: header 'Accept-Encoding' is 'compress' header 'My-cool-header' is 'my-client-value, this-is-an-appended-value' header 'My-Overwrite-Header' is 'this-is-the-only-value' - header 'Host' is 'echo.example.com' + header 'Host' is 'echo.example.com:$GW_PORT' header 'Connection' is 'close' header 'Accept' is '*/*' ``` diff --git a/examples/https-termination/README.md b/examples/https-termination/README.md index 0fda433006..51a55b6db5 100644 --- a/examples/https-termination/README.md +++ b/examples/https-termination/README.md @@ -109,7 +109,7 @@ To get a redirect for coffee: curl --resolve cafe.example.com:$GW_HTTP_PORT:$GW_IP http://cafe.example.com:$GW_HTTP_PORT/coffee --include HTTP/1.1 302 Moved Temporarily ... -Location: https://cafe.example.com:443/coffee +Location: https://cafe.example.com/coffee ... ``` @@ -119,7 +119,7 @@ To get a redirect for tea: curl --resolve cafe.example.com:$GW_HTTP_PORT:$GW_IP http://cafe.example.com:$GW_HTTP_PORT/tea --include HTTP/1.1 302 Moved Temporarily ... -Location: https://cafe.example.com:443/tea +Location: https://cafe.example.com/tea ... ```