This is an automated email from the ASF dual-hosted git repository. kayx23 pushed a commit to branch docs/update-deb-repo-debian12 in repository https://gitbox.apache.org/repos/asf/apisix.git
commit aa7559e92513ad8ae29f8e926651cf57aaea0aae Author: kayx23 <[email protected]> AuthorDate: Sat Jul 4 00:17:17 2026 +0800 docs: update Debian APT repo instructions --- docs/en/latest/installation-guide.md | 8 ++++---- docs/zh/latest/installation-guide.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/latest/installation-guide.md b/docs/en/latest/installation-guide.md index 3d4cd7467..b77527725 100644 --- a/docs/en/latest/installation-guide.md +++ b/docs/en/latest/installation-guide.md @@ -166,23 +166,23 @@ Run `apisix help` to get a list of all available operations. ### Installation via DEB repository -Currently the only DEB repository supported by APISIX is Debian 11 (Bullseye) and supports both amd64 and arm64 architectures. +Currently the only DEB repository supported by APISIX is Debian 12 and supports both amd64 and arm64 architectures. ```shell # amd64 wget -O - http://repos.apiseven.com/pubkey.gpg | sudo apt-key add - -echo "deb http://repos.apiseven.com/packages/debian bullseye main" | sudo tee /etc/apt/sources.list.d/apisix.list +echo "deb http://repos.apiseven.com/packages/debian debian12 main" | sudo tee /etc/apt/sources.list.d/apisix.list # arm64 wget -O - http://repos.apiseven.com/pubkey.gpg | sudo apt-key add - -echo "deb http://repos.apiseven.com/packages/arm64/debian bullseye main" | sudo tee /etc/apt/sources.list.d/apisix.list +echo "deb http://repos.apiseven.com/packages/arm64/debian debian12 main" | sudo tee /etc/apt/sources.list.d/apisix.list ``` Then, to install APISIX, run: ```shell sudo apt update -sudo apt install -y apisix=3.8.0-0 +sudo apt install -y apisix ``` ### Managing APISIX server diff --git a/docs/zh/latest/installation-guide.md b/docs/zh/latest/installation-guide.md index 255dff987..0430f3949 100644 --- a/docs/zh/latest/installation-guide.md +++ b/docs/zh/latest/installation-guide.md @@ -169,23 +169,23 @@ apisix start ### 通过 DEB 仓库安装 -目前 APISIX 支持的 DEB 仓库仅支持 Debian 11(Bullseye),并且支持 amd64 和 arm64 架构。 +目前 APISIX 支持的 DEB 仓库仅支持 Debian 12,并且支持 amd64 和 arm64 架构。 ```shell # amd64 wget -O - http://repos.apiseven.com/pubkey.gpg | sudo apt-key add - -echo "deb http://repos.apiseven.com/packages/debian bullseye main" | sudo tee /etc/apt/sources.list.d/apisix.list +echo "deb http://repos.apiseven.com/packages/debian debian12 main" | sudo tee /etc/apt/sources.list.d/apisix.list # arm64 wget -O - http://repos.apiseven.com/pubkey.gpg | sudo apt-key add - -echo "deb http://repos.apiseven.com/packages/arm64/debian bullseye main" | sudo tee /etc/apt/sources.list.d/apisix.list +echo "deb http://repos.apiseven.com/packages/arm64/debian debian12 main" | sudo tee /etc/apt/sources.list.d/apisix.list ``` 完成上述操作后使用以下命令安装 APISIX: ```shell sudo apt update -sudo apt install -y apisix=3.8.0-0 +sudo apt install -y apisix ``` ### 管理 APISIX 服务
