hf400159 commented on code in PR #6736:
URL: https://github.com/apache/apisix/pull/6736#discussion_r854774980


##########
docs/zh/latest/FAQ.md:
##########
@@ -534,35 +557,38 @@ HTTP/1.1 200 OK
 }
 ```
 
-## 如何解决 `unable to get local issuer certificate` 错误
+## 我应该如何解决 `unable to get local issuer certificate` 这个错误?
 
-修改 `conf/config.yaml`
+您可以手动设置证书的路径,将其添加到 `conf/config.yaml` 文件中,具体操作如下所示:
 
 ```yaml
-# ... 忽略其余无关项
 apisix:
   ssl:
     ssl_trusted_certificate: /path/to/certs/ca-certificates.crt
-# ... 忽略其余无关项
 ```
 
-**注意:**
+**注意:**当你尝试使用 cosocket 连接任何 TLS 服务时,如果 APISIX 不信任对端 TLS 服务证书,都需要配置 
`apisix.ssl.ssl_trusted_certificate`。
 
-尝试使用 cosocket 连接任何 TLS 服务时,如果 APISIX 不信任对端 TLS 服务证书,都需要配置 
`apisix.ssl.ssl_trusted_certificate`。
+例如:在 APISIX 中使用 Nacos 作为服务发现时,Nacos 开启了 TLS 协议, 即 Nacos 配置的 `host` 是 
`https://` 开头,需要配置 `apisix.ssl.ssl_trusted_certificate`,并且使用和 Nacos 相同的 CA 证书。
 
-举例:在 APISIX 中使用 Nacos 作为服务发现时,Nacos 开启了 TLS 协议, 即 Nacos 配置的 `host` 是 
`https://` 开头,需要配置 `apisix.ssl.ssl_trusted_certificate`,并且使用和 Nacos 相同的 CA 证书。
+## 我应该如何解决 `module 'resty.worker.events' not found` 这个错误?
 
-## 如何解决 `module 'resty.worker.events' not found` 错误
+引起这个错误的原因是在`/root` 目录下安装了 APISIX。因为 worker 进程的用户是 nobody,无权访问 `/root` 目录下的文件。
 
-在 `/root` 目录下安装 APISIX 会导致这个问题。因为 worker 进程的用户是 nobody,无权访问 `/root` 
目录下的文件。需要移动 APISIX 安装目录,推荐安装在 `/usr/local` 目录下。
+解决办法是改变 APISIX 的安装目录,推荐安装在 `/usr/local` 目录下。
 
-## `plugin-metadata` 和 `plugin-configs` 有什么区别
+## 在Apache APISIX中,“plugin-metadata”和“plugin-configs”有什么区别?
 
-`plugin-metadata` 是插件的元数据,由插件的所有配置实例共享。在编写插件时,如果有一些属性变化需要对该插件的所有配置实例生效,那么放在 
`plugin-metadata` 合适。
+两者之间的差异如下:
 
-`plugin-configs` 是指多个不同插件的配置实例的组合,如果你想要复用一组通用的插件配置实例,你可以把它们提取成一个 Plugin 
Config,并绑定到对应的路由上。
+| `plugin-metadata`                                                            
                                    | `plugin-config`                           
                                                                                
                          |
+| 
----------------------------------------------------------------------------------------------------------------
 | 
---------------------------------------------------------------------------------------------------------------------------------------------------
 |
+| 由插件的所有配置实例共享的插件元数据。                                        | 多个不同插件的配置实例集合。  
                                       |
+| 当需要跨Plugin的所有配置实例传播属性更改时使用。 | 
当你需要重用一组公共的配置实例,以便它可以被提取到一个“plugin-config”并绑定到不同的路由时使用。 |
+| 对绑定到Plugin的配置实例的所有实体生效。                           | 对绑定到' plugin-config 
'的路由生效。                                                                         
                      |
 
-`plugin-metadata` 和 `plugin-configs` 的区别在于:
+## 我在哪里可以找到更多的答案?

Review Comment:
   ```suggestion
   ## 我可以在哪里寻求更多帮助?
   ```



##########
docs/zh/latest/FAQ.md:
##########
@@ -209,32 +230,28 @@ Server: APISIX web server
 </html>
 ```
 
-## 如何修改日志等级
-
-默认的 APISIX 日志等级为 `warn`,如果需要查看 `core.log.info` 的打印结果需要将日志等级调整为 `info`。
+## 我应该如何更改 Apache APISIX 的日志等级?
 
-具体步骤:
+默认的 Apache APISIX 日志等级为 `warn`,你需要将日志等级调整为 `info`来查看 `core.log.info` 的打印结果。
 
-1、修改 conf/config.yaml 中的 `nginx_config` 配置参数 `error_log_level: "warn"` 为 
`error_log_level: "info"`。
+你可以通过修改 conf/config.yaml 中的 `nginx_config` 配置参数 `error_log_level: "warn"` 为 
`error_log_level: "info"`。然后重新加载 Apache APISIX。
 
 ```yaml
 nginx_config:
   error_log_level: "info"
 ```
 
-2、重启或 reload APISIX
+## 我应该如何重新加载 Apache APISIX 的自定义插件?
 
-之后便可以在 logs/error.log 中查看到 info 的日志了。
+所有的 Apache APISIX 的插件都支持热加载的方式。
 
-## 如何加载自己编写的插件
+你可以通过下面的文档来了解更多关于热加载的内容,具体参考 [插件](./plugins.md) 中关于“热加载”的部分。
 
-Apache APISIX 的插件支持热加载。
+## 在处理 HTTP 或 HTTPS 请求时,我如何配置 Apache APISIX 监听多个端口?

Review Comment:
   ```suggestion
   ## 在处理 HTTP 或 HTTPS 请求时,我如何配置 Apache APISIX 监听多个端口?
   ```



##########
docs/zh/latest/FAQ.md:
##########
@@ -21,73 +21,97 @@ title: 常见问题
 #
 -->
 
-## 为什么要做 API 网关?不是已经有其他的开源网关了吗?
+## 为什么我们需要一个新的 API 网关?不是已经有其他的开源网关了吗?
 
-微服务领域对 API 网关有新的需求:更高的灵活性、更高的性能要求,以及云原生的贴合。
+随着企业向云本地微服务的发展,企业对高性能、灵活、安全、可扩展的 API 网关的需求越来越大。
+
+APISIX 在这些指标上优于其它 API 网关,同时具有平台无关性和完全动态的特性,如支持多种协议、细粒度路由和多语言支持。
 
 ## APISIX 和其他的 API 网关有什么不同之处?
 
-APISIX 基于 etcd 来完成配置的保存和同步,而不是 PostgreSQL 或者 MySQL 这类关系型数据库。
-这样不仅去掉了轮询,让代码更加的简洁,配置同步也更加实时。同时系统也不会存在单点,可用性更高。
+Apache APISIX 在以下方面有所不同:
+
+— 它使用 etcd 来保存和同步配置,而不是使用如 PostgreSQL 或 MySQL 这类的关系数据库。etcd 
中的实时事件通知系统比这些替代方案更容易扩展。这允许 APISIX 实时同步配置,使代码简洁,并避免单点故障。
+- 完全动态
+- 支持[热加载插件](/docs/apisix/plugins/#hot-reload)。
+
+## APISIX 所展现出的性能如何?
+
+与其它API网关相比较,Apache APISIX 提供了最好的性能,其单核QPS高达18,000,平均延迟仅为0.2 ms。
+
+如果您想获取性能基准测试的具体结果,请查看 [benchmark](benchmark.md)。
 
-另外,APISIX 具备动态路由和插件热加载,特别适合微服务体系下的 API 管理。
+## Apache APISIX支持哪些平台?

Review Comment:
   ```suggestion
   ## Apache APISIX 支持哪些平台?
   ```



##########
docs/zh/latest/FAQ.md:
##########
@@ -209,32 +230,28 @@ Server: APISIX web server
 </html>
 ```
 
-## 如何修改日志等级
-
-默认的 APISIX 日志等级为 `warn`,如果需要查看 `core.log.info` 的打印结果需要将日志等级调整为 `info`。
+## 我应该如何更改 Apache APISIX 的日志等级?

Review Comment:
   ```suggestion
   ## 我应该如何更改 Apache APISIX 的日志等级?
   ```



##########
docs/zh/latest/FAQ.md:
##########
@@ -209,32 +230,28 @@ Server: APISIX web server
 </html>
 ```
 
-## 如何修改日志等级
-
-默认的 APISIX 日志等级为 `warn`,如果需要查看 `core.log.info` 的打印结果需要将日志等级调整为 `info`。
+## 我应该如何更改 Apache APISIX 的日志等级?
 
-具体步骤:
+默认的 Apache APISIX 日志等级为 `warn`,你需要将日志等级调整为 `info`来查看 `core.log.info` 的打印结果。
 
-1、修改 conf/config.yaml 中的 `nginx_config` 配置参数 `error_log_level: "warn"` 为 
`error_log_level: "info"`。
+你可以通过修改 conf/config.yaml 中的 `nginx_config` 配置参数 `error_log_level: "warn"` 为 
`error_log_level: "info"`。然后重新加载 Apache APISIX。
 
 ```yaml
 nginx_config:
   error_log_level: "info"
 ```
 
-2、重启或 reload APISIX
+## 我应该如何重新加载 Apache APISIX 的自定义插件?

Review Comment:
   ```suggestion
   ## 我应该如何重新加载 Apache APISIX 的自定义插件?
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to