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


##########
docs/zh/latest/FAQ.md:
##########
@@ -534,35 +558,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 配置提取到一个 
`plugin-config` 并绑定到不同的路由。 |
+| 对绑定到 Plugin 的配置实例的所有实体生效。                           | 对绑定到 `plugin-config` 
的路由生效。                                                                          
                     |
+| 对绑定到 Plugin 的配置实例的所有实体生效。                           | 对绑定到 `plugin-config` 
的路由生效。                                                                          
                     |
 
-`plugin-metadata` 和 `plugin-configs` 的区别在于:
+## 我可以在哪里寻求更多帮助?

Review Comment:
   ```suggestion
   ## 如果在使用 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