From a0db71db201e8d04232ca5ab72ddb852ea8d6898 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Wed, 9 Oct 2019 02:42:37 +0900 Subject: [PATCH] Fix format (#1863) This patch fixes the format of code block. --- docs/serving/samples/knative-routing-go/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/serving/samples/knative-routing-go/README.md b/docs/serving/samples/knative-routing-go/README.md index 329da2d25..409126140 100644 --- a/docs/serving/samples/knative-routing-go/README.md +++ b/docs/serving/samples/knative-routing-go/README.md @@ -220,23 +220,31 @@ kubectl get VirtualService entry-route --output yaml ``` * Send a request to the Search service: + ```shell curl http://${GATEWAY_IP}/search --header "Host: example.com" ``` + or + ```shell curl http://${GATEWAY_IP}/search --header "Host: " ``` + for the case using your own domain. - * Send a request to the Login service: +* Send a request to the Login service: + ```shell curl http://${GATEWAY_IP}/login --header "Host: example.com" ``` + or + ```shell curl http://${GATEWAY_IP}/login --header "Host: " ``` + for the case using your own domain. ## How It Works