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

[apisix-website] branch fix-incorrect-sentence created (now 7494c41b397)

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

monkeydluffy pushed a change to branch fix-incorrect-sentence
in repository https://gitbox.apache.org/repos/asf/apisix-website.git


      at 7494c41b397 docs: fix incorrect sentence

This branch includes the following new commits:

     new 7494c41b397 docs: fix incorrect sentence

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[apisix-website] 01/01: docs: fix incorrect sentence

Posted by mo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

monkeydluffy pushed a commit to branch fix-incorrect-sentence
in repository https://gitbox.apache.org/repos/asf/apisix-website.git

commit 7494c41b397a5e6105d96d77d429981d3996fe62
Author: levy liu <mo...@gmail.com>
AuthorDate: Mon Apr 3 18:38:46 2023 +0800

    docs: fix incorrect sentence
---
 blog/en/blog/2021/08/10/apisix-nginx.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/blog/en/blog/2021/08/10/apisix-nginx.md b/blog/en/blog/2021/08/10/apisix-nginx.md
index ccb3d8a74c5..de2dcad2227 100644
--- a/blog/en/blog/2021/08/10/apisix-nginx.md
+++ b/blog/en/blog/2021/08/10/apisix-nginx.md
@@ -1,7 +1,7 @@
 ---
 title: "APISIX Architecture: How to Dynamically Manage NGINX Cluster?"
 author: Hui Tao
-keywords: 
+keywords:
 - API Gateway
 - Apache APISIX
 - Nginx
@@ -30,7 +30,7 @@ Apache APISIX is based on the Lua timer and the lua-resty-etcd module for dynami
 
 ## Configuration synchronization scheme based on etcd watch mechanism
 
-Managing a cluster must rely on a centralized configuration, and etcd is one such database. etcd was not chosen as the configuration center for Apache APISIX because it has two advantages.
+Managing a cluster must rely on a centralized configuration, and etcd is one such database. etcd was chosen as the configuration center for Apache APISIX because it has two advantages.
 
 * etcd uses the Paxos-like Raft protocol to guarantee data consistency, and it is a decentralized, distributed database that is more reliable than relational databases
 * etcd's watch mechanism allows clients to monitor changes to a key, i.e., if the value of a key like /nginx/http/upstream changes, the watch client will be notified immediately, as shown in the following figure.
@@ -48,7 +48,7 @@ Where the prefix /apisix can be changed in conf/config.yaml, e.g.
 
 ```yaml
 etcd:
-  host:  
+  host:
     - "http://127.0.0.1:2379"
   prefix: /apisix # apisix configurations prefix
 ```