Fix format (#1863)

This patch fixes the format of code block.
This commit is contained in:
Kenjiro Nakayama 2019-10-09 02:42:37 +09:00 committed by Knative Prow Robot
parent d4504f1e3e
commit a0db71db20
1 changed files with 9 additions and 1 deletions

View File

@ -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: <YOUR_DOMAIN_NAME>"
```
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: <YOUR_DOMAIN_NAME>"
```
for the case using your own domain.
## How It Works