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

baoyuan 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 4428aa371 docs: remove outdate dashboard doc (#12596)
4428aa371 is described below

commit 4428aa371eac52a0c95aee1c4b297ea4454c85bc
Author: Baoyuan <[email protected]>
AuthorDate: Fri Sep 5 16:47:49 2025 +0800

    docs: remove outdate dashboard doc (#12596)
---
 docs/en/latest/FAQ.md | 36 ------------------------------------
 docs/zh/latest/FAQ.md | 36 ------------------------------------
 2 files changed, 72 deletions(-)

diff --git a/docs/en/latest/FAQ.md b/docs/en/latest/FAQ.md
index 740b8b64c..f9e30f52f 100644
--- a/docs/en/latest/FAQ.md
+++ b/docs/en/latest/FAQ.md
@@ -384,42 +384,6 @@ make: *** [deps] Error 1
 
 This is caused by the missing OpenResty openssl development kit. To install 
it, refer [installing dependencies](install-dependencies.md).
 
-## How do I access the APISIX Dashboard through Apache APISIX proxy?
-
-You can follow the steps below to configure this:
-
-1. Configure different ports for Apache APISIX proxy and Admin API. Or, 
disable the Admin API.
-
-```yaml
-deployment:
-  admin:
-    admin_listen: # use a separate port
-      ip: 127.0.0.1
-      port: 9180
-```
-
-2. Add a proxy Route for the Apache APISIX dashboard:
-
-```shell
-curl -i http://127.0.0.1:9180/apisix/admin/routes/1  -H "X-API-KEY: 
$admin_key" -X PUT -d '
-{
-    "uris":[ "/*" ],
-    "name":"apisix_proxy_dashboard",
-    "upstream":{
-        "nodes":[
-            {
-                "host":"127.0.0.1",
-                "port":9000,
-                "weight":1
-            }
-        ],
-        "type":"roundrobin"
-    }
-}'
-```
-
-**Note**: The Apache APISIX Dashboard is listening on `127.0.0.1:9000`.
-
 ## How do I use regular expressions (regex) for matching `uri` in a Route?
 
 You can use the `vars` field in a Route for matching regular expressions:
diff --git a/docs/zh/latest/FAQ.md b/docs/zh/latest/FAQ.md
index 5c8496650..f3e4bad7d 100644
--- a/docs/zh/latest/FAQ.md
+++ b/docs/zh/latest/FAQ.md
@@ -389,42 +389,6 @@ make: *** [deps] Error 1
 
 这是由于缺少 OpenResty openssl 开发工具包。要安装它,请参考[installation 
dependencies](install-dependencies.md)。
 
-## 我如何通过 APISIX 代理访问 APISIX Dashboard?
-
-你可以按照以下步骤进行配置:
-
-1. 为 Apache APISIX 代理和 Admin API 配置不同的端口,或者禁用 Admin API。
-
-```yaml
-deployment:
-  admin:
-    admin_listen: # use a separate port
-      ip: 127.0.0.1
-      port: 9180
-```
-
-2、添加 APISIX Dashboard 的代理路由:
-
-```shell
-curl -i http://127.0.0.1:9180/apisix/admin/routes/1  -H "X-API-KEY: 
$admin_key" -X PUT -d '
-{
-    "uris":[ "/*" ],
-    "name":"apisix_proxy_dashboard",
-    "upstream":{
-        "nodes":[
-            {
-                "host":"127.0.0.1",
-                "port":9000,
-                "weight":1
-            }
-        ],
-        "type":"roundrobin"
-    }
-}'
-```
-
-**注意**: Apache APISIX Dashboard 正在监听 `127.0.0.1:9000`。
-
 ## 如何使用正则表达式 (regex) 匹配 Route 中的 `uri`?
 
 你可以在 Route 中使用 `vars` 字段来匹配正则表达式:

Reply via email to