You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by we...@apache.org on 2023/04/07 07:19:40 UTC

[apisix] branch release/3.2 updated: docs: update default port to 9080 in demo to avoid misunderstanding. (#9106)

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

wenming pushed a commit to branch release/3.2
in repository https://gitbox.apache.org/repos/asf/apisix.git


The following commit(s) were added to refs/heads/release/3.2 by this push:
     new 37c32ec0a docs: update default port to 9080 in demo to avoid misunderstanding. (#9106)
37c32ec0a is described below

commit 37c32ec0a3936812f6818fb31bc1c188345460b9
Author: mi-2 <49...@users.noreply.github.com>
AuthorDate: Fri Apr 7 15:19:34 2023 +0800

    docs: update default port to 9080 in demo to avoid misunderstanding. (#9106)
---
 docs/zh/latest/installation-guide.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/zh/latest/installation-guide.md b/docs/zh/latest/installation-guide.md
index 85ec416d7..08ce789f0 100644
--- a/docs/zh/latest/installation-guide.md
+++ b/docs/zh/latest/installation-guide.md
@@ -244,18 +244,18 @@ brew services start etcd
 
 通过修改本地 `./conf/config.yaml` 文件,或者在启动 APISIX 时使用 `-c` 或 `--config` 添加文件路径参数 `apisix start -c <path string>`,完成对 APISIX 服务本身的基本配置。
 
-比如将 APISIX 默认监听端口修改为 8000,其他配置保持默认,在 `./conf/config.yaml` 中只需这样配置:
+比如将 APISIX 默认监听端口修改为 9080,其他配置保持默认,在 `./conf/config.yaml` 中只需这样配置:
 
 ```yaml title=“./conf/config.yaml”
 apisix:
-  node_listen: 8000 # APISIX listening port
+  node_listen: 9080 # APISIX listening port
 ```
 
-比如指定 APISIX 默认监听端口为 8000,并且设置 etcd 地址为 `http://foo:2379`,其他配置保持默认。在 `./conf/config.yaml` 中只需这样配置:
+比如指定 APISIX 默认监听端口为 9080,并且设置 etcd 地址为 `http://foo:2379`,其他配置保持默认。在 `./conf/config.yaml` 中只需这样配置:
 
 ```yaml title=“./conf/config.yaml”
 apisix:
-  node_listen: 8000 # APISIX listening port
+  node_listen: 9080 # APISIX listening port
 
 deployment:
   role: traditional