You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by me...@apache.org on 2020/02/14 03:08:20 UTC

[incubator-apisix] branch master updated: doc: add wolf-rbac plugin (#1116)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7fe2272  doc: add wolf-rbac plugin (#1116)
7fe2272 is described below

commit 7fe22724926a6bc82c338c6925f78b2ed9c9ea1c
Author: iGeeky <ig...@gmail.com>
AuthorDate: Fri Feb 14 11:08:11 2020 +0800

    doc: add wolf-rbac plugin (#1116)
    
    Co-authored-by: jie <ji...@163.com>
---
 README.md                | 2 +-
 README_CN.md             | 2 +-
 doc/README.md            | 3 ++-
 doc/README_CN.md         | 3 ++-
 doc/plugins/wolf-rbac.md | 2 +-
 5 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 6252827..21e114b 100644
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ A/B testing, canary release, blue-green deployment, limit rate, defense against
     - [Support priority](doc/router-radixtree.md#3-match-priority)
 
 - **Security**
-    - Authentications: [key-auth](doc/plugins/key-auth.md), [JWT](doc/plugins/jwt-auth.md), [basic-auth](doc/plugins/basic-auth.md)
+    - Authentications: [key-auth](doc/plugins/key-auth.md), [JWT](doc/plugins/jwt-auth.md), [basic-auth](doc/plugins/basic-auth.md), [wolf-rbac](doc/plugins/wolf-rbac.md)
     - [IP Whitelist/Blacklist](doc/plugins/ip-restriction.md)
     - [IdP](doc/plugins/oauth.md): Support external authentication services, such as Auth0, okta, etc., users can use this to connect to OAuth 2.0 and other authentication methods.
     - [Limit-req](doc/plugins/limit-req.md)
diff --git a/README_CN.md b/README_CN.md
index 201a41f..ae6d2fc 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -83,7 +83,7 @@ A/B 测试、金丝雀发布(灰度发布)、蓝绿部署、限流限速、抵
     - [支持路由的优先级](doc/router-radixtree.md#3-match-priority)
 
 - **安全防护**
-    - 多种身份认证方式: [key-auth](doc/plugins/key-auth-cn.md), [JWT](doc/plugins/jwt-auth-cn.md), [basic-auth](doc/plugins/basic-auth-cn.md)。
+    - 多种身份认证方式: [key-auth](doc/plugins/key-auth-cn.md), [JWT](doc/plugins/jwt-auth-cn.md), [basic-auth](doc/plugins/basic-auth-cn.md), [wolf-rbac](doc/plugins/wolf-rbac-cn.md)。
     - [IP 黑白名单](doc/plugins/ip-restriction-cn.md)
     - [IdP 支持](doc/plugins/oauth.md): 支持外部的身份认证服务,比如 Auth0,Okta,Authing 等,用户可以借此来对接 Oauth2.0 等认证方式。
     - [限制速率](doc/plugins/limit-req-cn.md)
diff --git a/doc/README.md b/doc/README.md
index 51e5ac5..7b01f22 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -42,7 +42,8 @@ Plugins
 * [hot reload](plugins.md): Hot reload without reload service.
 * [key-auth](plugins/key-auth.md): User authentication based on Key Authentication.
 * [JWT-auth](plugins/jwt-auth.md): User authentication based on [JWT](https://jwt.io/) (JSON Web Tokens) Authentication.
-* [basic-auth](doc/plugins/basic-auth.md): User authentication based on Basic Authentication.
+* [basic-auth](plugins/basic-auth.md): User authentication based on Basic Authentication.
+* [wolf-rbac](plugins/wolf-rbac.md) User Authentication and Authorization based on *RBAC*.
 * [HTTPS/TLS](https.md): Dynamic load the SSL Certificate by Server Name Indication (SNI).
 * [limit-count](plugins/limit-count.md): Rate limiting based on a "fixed window" implementation.
 * [limit-req](plugins/limit-req.md): Request rate limiting and adjustment based on the "leaky bucket" method.
diff --git a/doc/README_CN.md b/doc/README_CN.md
index 201e6c1..a60d558 100644
--- a/doc/README_CN.md
+++ b/doc/README_CN.md
@@ -44,7 +44,8 @@ Reference document
 * [动态负载均衡](architecture-design-cn.md#upstream):跨多个上游服务的动态负载均衡,目前已支持 round-robin 和一致性哈希算法。
 * [key-auth](plugins/key-auth-cn.md):基于 Key Authentication 的用户认证。
 * [JWT-auth](plugins/jwt-auth-cn.md):基于 [JWT](https://jwt.io/) (JSON Web Tokens) Authentication 的用户认证。
-* [basic-auth](doc/plugins/basic-auth-cn.md):基于 basic auth 的用户认证。
+* [basic-auth](plugins/basic-auth-cn.md):基于 basic auth 的用户认证。
+* [wolf-rbac](plugins/wolf-rbac-cn.md) 基于 *RBAC* 的用户认证及授权。
 * [limit-count](plugins/limit-count-cn.md):基于“固定窗口”的限速实现。
 * [limit-req](plugins/limit-req-cn.md):基于漏桶原理的请求限速实现。
 * [limit-conn](plugins/limit-conn-cn.md):限制并发请求(或并发连接)。
diff --git a/doc/plugins/wolf-rbac.md b/doc/plugins/wolf-rbac.md
index 639070b..e237b63 100644
--- a/doc/plugins/wolf-rbac.md
+++ b/doc/plugins/wolf-rbac.md
@@ -31,7 +31,7 @@
 ## Name
 
 `wolf-rbac` is an authentication and authorization (rbac) plugin. It needs to work with `consumer`. Also need to add `wolf-rbac` to a` service` or `route`.
-The rbac feature is provided by [wolf] (https://github.com/iGeeky/wolf). For more information about `wolf`, please refer to [wolf documentation] (https://github.com/iGeeky/wolf).
+The rbac feature is provided by [wolf](https://github.com/iGeeky/wolf). For more information about `wolf`, please refer to [wolf documentation](https://github.com/iGeeky/wolf).
 
 
 ## Attributes