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

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


The following commit(s) were added to refs/heads/master by this push:
     new 529013951 docs: add realm attribute to zh auth plugin docs (#12886)
529013951 is described below

commit 5290139514b5411c02f68e96d6be059bd4d1a3d1
Author: Varidhi61 <[email protected]>
AuthorDate: Tue Mar 17 13:27:01 2026 +0530

    docs: add realm attribute to zh auth plugin docs (#12886)
---
 docs/zh/latest/plugins/basic-auth.md | 1 +
 docs/zh/latest/plugins/hmac-auth.md  | 1 +
 docs/zh/latest/plugins/jwt-auth.md   | 1 +
 docs/zh/latest/plugins/key-auth.md   | 1 +
 docs/zh/latest/plugins/ldap-auth.md  | 1 +
 5 files changed, 5 insertions(+)

diff --git a/docs/zh/latest/plugins/basic-auth.md 
b/docs/zh/latest/plugins/basic-auth.md
index c445e45f3..f7a70b76c 100644
--- a/docs/zh/latest/plugins/basic-auth.md
+++ b/docs/zh/latest/plugins/basic-auth.md
@@ -55,6 +55,7 @@ Route 端:
 | ---------------- | ------- | ------ | ------ | 
--------------------------------------------------------------- |
 | hide_credentials | boolean | 否     | false  | 该参数设置为 `true` 时,则不会将 
Authorization 请求头传递给 Upstream。|
 | anonymous_consumer | boolean | 否    | false | 匿名消费者名称。如果已配置,则允许匿名用户绕过身份验证。 |
+| realm | string | 否 | basic |在身份验证失败时,应包含在 `WWW-Authenticate` 标头中的域。|
 
 ## 示例
 
diff --git a/docs/zh/latest/plugins/hmac-auth.md 
b/docs/zh/latest/plugins/hmac-auth.md
index c44604739..071b88e46 100644
--- a/docs/zh/latest/plugins/hmac-auth.md
+++ b/docs/zh/latest/plugins/hmac-auth.md
@@ -57,6 +57,7 @@ description: hmac-auth 插件支持 HMAC 认证,保证请求的完整性,防
 | validate_request_body | boolean       | 否    | false         |               
               | 如果为 true,则验证请求正文的完整性,以确保在传输过程中没有被篡改。具体来说,插件会创建一个 SHA-256 的 
base64 编码 digest,并将其与 `Digest` 头进行比较。如果 `Digest` 头丢失或 digest 不匹配,验证将失败。         
                 |
 | hide_credentials | boolean       | 否    | false         |                    
          | 如果为 true,则不会将授权请求头传递给上游服务。                        |
 | anonymous_consumer | string    | 否    |          |                           
   | 匿名消费者名称。如果已配置,则允许匿名用户绕过身份验证。                        |
+| realm | string | 否 | hmac |在身份验证失败时,应包含在 `WWW-Authenticate` 标头中的域。|
 
 注意:schema 中还定义了 `encrypt_fields = {"secret_key"}`,这意味着该字段将会被加密存储在 etcd 中。具体参考 
[加密存储字段](../plugin-develop.md#加密存储字段)。
 
diff --git a/docs/zh/latest/plugins/jwt-auth.md 
b/docs/zh/latest/plugins/jwt-auth.md
index e761732e7..06a634bb8 100644
--- a/docs/zh/latest/plugins/jwt-auth.md
+++ b/docs/zh/latest/plugins/jwt-auth.md
@@ -64,6 +64,7 @@ Route 端:
 | key_claim_name | string  | 否     | key           | 包含用户密钥(对应消费者的密钥属性)的 JWT 
声明的名称。|
 | anonymous_consumer | string | 否     | false  | 匿名消费者名称。如果已配置,则允许匿名用户绕过身份验证。  
|
 | store_in_ctx | boolean | 否     | false  | 设置为 `true` 将会将 JWT 负载存储在请求上下文 
(`ctx.jwt_auth_payload`) 中。这允许在同一请求上随后运行的低优先级插件检索和使用 JWT 令牌。 |
+| realm | string | 否 | jwt |在身份验证失败时,应包含在 `WWW-Authenticate` 标头中的域。|
 | claims_to_verify | array[string] | 否 | ["exp", "nbf"] | ["exp", "nbf"] | 需要在 
JWT 负载中验证的声明。 |
 
 您可以使用 [HashiCorp Vault](https://www.vaultproject.io/) 实施 `jwt-auth`,以从其[加密的 KV 
引擎](https://developer.hashicorp.com/vault/docs/secrets/kv) 使用 [APISIX 
Secret](../terminology/secret.md) 资源。
diff --git a/docs/zh/latest/plugins/key-auth.md 
b/docs/zh/latest/plugins/key-auth.md
index fa6f469fb..08e2ac164 100644
--- a/docs/zh/latest/plugins/key-auth.md
+++ b/docs/zh/latest/plugins/key-auth.md
@@ -57,6 +57,7 @@ Route 端:
 | header            | string | 否    | apikey | 设置我们从哪个 header 获取 key。          
                                                                                
                                         |
 | query             | string | 否    | apikey | 设置我们从哪个 query string 获取 
key,优先级低于 `header`。                                                             
                                                 |
 | hide_credentials  | boolean | 否    | false  | 如果为 `true`,则不要将含有认证信息的 header 
或 query string 传递给 Upstream。  |
+| realm | string | 否 | key |在身份验证失败时,应包含在 `WWW-Authenticate` 标头中的域。|
 
 ## 示例
 
diff --git a/docs/zh/latest/plugins/ldap-auth.md 
b/docs/zh/latest/plugins/ldap-auth.md
index 0417879fd..5ecd0b83a 100644
--- a/docs/zh/latest/plugins/ldap-auth.md
+++ b/docs/zh/latest/plugins/ldap-auth.md
@@ -51,6 +51,7 @@ Route 端:
 | use_tls  | boolean | 否    | false  | 如果设置为 `true` 则表示启用 TLS。                 
                            |
 | tls_verify| boolean  | 否     | false        | 是否校验 LDAP 服务器的证书。如果设置为 
`true`,你必须设置 `config.yaml` 里面的 `ssl_trusted_certificate`,并且确保 `ldap_uri` 里的 
host 和服务器证书中的 host 匹配。 |
 | uid      | string  | 否    | cn    | UID 属性。                                  
                       |
+| realm | string | 否 | ldap |在身份验证失败时,应包含在 `WWW-Authenticate` 标头中的域。|
 
 ## 启用插件
 

Reply via email to