You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by yi...@apache.org on 2022/06/30 03:33:01 UTC

[apisix-website] branch master updated: docs: fix typo error and add link (#1171)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7ef1b0074f3 docs: fix typo error and add link (#1171)
7ef1b0074f3 is described below

commit 7ef1b0074f30e5d108d2bdab6f73b06de9b65f8a
Author: feihan <97...@users.noreply.github.com>
AuthorDate: Thu Jun 30 11:32:55 2022 +0800

    docs: fix typo error and add link (#1171)
---
 website/blog/2022/06/14/automated-operation-base-apache-apisix.md   | 6 +++---
 .../2022/06/14/automated-operation-base-apache-apisix.md            | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/website/blog/2022/06/14/automated-operation-base-apache-apisix.md b/website/blog/2022/06/14/automated-operation-base-apache-apisix.md
index fb03455dd3f..cccb2d5002f 100644
--- a/website/blog/2022/06/14/automated-operation-base-apache-apisix.md
+++ b/website/blog/2022/06/14/automated-operation-base-apache-apisix.md
@@ -53,11 +53,11 @@ The overall architecture of the automation operation and maintenance platform is
 
 - API management tool YAPI: it is responsible for the specification definition of the interface, the preparation of test cases, and the data source of ACL;
 
-- Access control component Casbin: a lightweight, multi-mode, and strong paradigm cross-language open-source access control framework. We use PyCasbin based on RESTful;
+- Access control component [Casbin](https://github.com/casbin/casbin): a lightweight, multi-mode, and strong paradigm cross-language open-source access control framework. We use [PyCasbin](https://github.com/casbin/pycasbin) based on RESTful;
 
 - Data storage: MySQL 5.7;
 
-- Mug skeleton: the self-developed web framework is mainly used for deeper technical control.
+- [mug-skeleton](https://github.com/chenqing24/mug-skeleton): the self-developed web framework is mainly used for deeper technical control.
 
 - Connected third-party platform-related components
 
@@ -65,7 +65,7 @@ The overall architecture of the automation operation and maintenance platform is
 
   - OpenLDAP: used for user account authentication, not for authentication;
 
-  - Workflow Activiti: the official RestAPI service is used. Since it is behind the gateway, there is no need to consider security issues.
+  - Workflow [Activiti](https://github.com/Activiti/Activiti): the official RestAPI service is used. Since it is behind the gateway, there is no need to consider security issues.
 
 ## Business scenario
 
diff --git a/website/i18n/zh/docusaurus-plugin-content-blog/2022/06/14/automated-operation-base-apache-apisix.md b/website/i18n/zh/docusaurus-plugin-content-blog/2022/06/14/automated-operation-base-apache-apisix.md
index ab6ea5c9257..81791bd1cd7 100644
--- a/website/i18n/zh/docusaurus-plugin-content-blog/2022/06/14/automated-operation-base-apache-apisix.md
+++ b/website/i18n/zh/docusaurus-plugin-content-blog/2022/06/14/automated-operation-base-apache-apisix.md
@@ -63,9 +63,9 @@ tags: [Technology]
 - 对接的第三方平台相关组件
   - CMDB(自研):在开源的 CMDBuild 外包了一层 RESTful 的 API,方便交互;
 
-- OpenLDAP:用于用户的账号验证,不负责鉴权;
+  - OpenLDAP:用于用户的账号验证,不负责鉴权;
 
-- 工作流 [Activiti](https://github.com/Activiti/Activiti):使用官方的 RestAPI 服务,由于是处于在网关后方,因此不需要考虑安全问题。
+  - 工作流 [Activiti](https://github.com/Activiti/Activiti):使用官方的 RestAPI 服务,由于是处于在网关后方,因此不需要考虑安全问题。
 
 ## 业务场景
 
@@ -113,7 +113,7 @@ tags: [Technology]
 
 其次在 `hard_filet_by_lua` 这个阶段,常用于在请求访问时,额外的在 HTTP 请求头插入一些 `key:value`,供后续使用。例如,当需要我们线上灰度发布时,就可以在用户的请求头中加入标志位,通过这些标志位,就可以控制这些请求转发哪些后端服务,从而实现灰度发布。当然我们也可以使用 APISIX 的 [`traffic-split`](https://apisix.apache.org/zh/docs/apisix/plugins/traffic-split) 插件实现灰度发布。
 
-最后就是 `log_by_lua` 阶段,在该阶段,我们可以把一些 trace 信息或者一些故障信息可以直接输入到 log 文件中。同样的,针对 `Loggers`,APISIX 也提供了非常多的插件,包括 `skywalking-lo``g``ger`、`kafka-lo``gger`、`rocketmq-logger` 等等。
+最后就是 `log_by_lua` 阶段,在该阶段,我们可以把一些 trace 信息或者一些故障信息可以直接输入到 log 文件中。同样的,针对 `Loggers`,APISIX 也提供了非常多的插件,包括 `skywalking-logger`、`kafka-logger`、`rocketmq-logger` 等等。
 
 ## 自定义插件 `acl-plugin.lua`