From 1059414ad81e7ecef976894b86201b087f3942a3 Mon Sep 17 00:00:00 2001 From: Craig Brookes Date: Tue, 12 Dec 2023 11:22:25 +0000 Subject: [PATCH] Update doc/user-guides/secure-protect-connect.md Co-authored-by: Jason Madigan <4467+jasonmadigan@users.noreply.github.com> --- doc/user-guides/secure-protect-connect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user-guides/secure-protect-connect.md b/doc/user-guides/secure-protect-connect.md index 1fcc5e98f..624c395c4 100644 --- a/doc/user-guides/secure-protect-connect.md +++ b/doc/user-guides/secure-protect-connect.md @@ -363,7 +363,7 @@ So here again just an example, we have given `bob` twice as many requests to use Lets test this new setup: ```sh -while :; do curl -k --write-out '%{http_code}\n' --silent --output /dev/null -H 'Authorization: APIKEY IAMALICE' "https://api.$KUADRANT_ZONE_ROOT_DOMAIN/cars" | grep -E --color "\b(429)\b|$"; sleep 1; done +while :; do curl -k --resolve api.${KUADRANT_ZONE_ROOT_DOMAIN}:443:${INGRESS_HOST} --write-out '%{http_code}\n' --silent --output /dev/null -H 'Authorization: APIKEY IAMALICE' "https://api.$KUADRANT_ZONE_ROOT_DOMAIN/cars" | grep -E --color "\b(429)\b|$"; sleep 1; done ```