You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by zh...@apache.org on 2021/11/21 06:10:07 UTC

[apisix-ingress-controller] branch master updated: Fix bug typo in yaml (#763)

This is an automated email from the ASF dual-hosted git repository.

zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new bdf6721  Fix bug typo in yaml (#763)
bdf6721 is described below

commit bdf6721e5b0296aeabe7d89cb888b7c7ce759925
Author: Canh Dinh <va...@gmail.com>
AuthorDate: Sun Nov 21 13:10:02 2021 +0700

    Fix bug typo in yaml (#763)
---
 docs/en/latest/practices/proxy-the-httpbin-service.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en/latest/practices/proxy-the-httpbin-service.md b/docs/en/latest/practices/proxy-the-httpbin-service.md
index 0a1c6fe..2943b6f 100644
--- a/docs/en/latest/practices/proxy-the-httpbin-service.md
+++ b/docs/en/latest/practices/proxy-the-httpbin-service.md
@@ -59,8 +59,8 @@ spec:
       paths:
       - /*
     backends:
-       -serviceName: httpbin
-        servicePort: 80
+       - serviceName: httpbin
+         servicePort: 80
 ```
 
 The YAML snippet shows a simple `ApisixRoute` configuration, which tells Apache APISIX to route all requests with Host `local.httpbin.org` to the `httpbin` service.