From 27790264529da5ec3ea4e19474804e2d38c9c9c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=83=E9=9A=A8=E7=B7=A3=E5=8B=95?= Date: Wed, 27 Aug 2025 13:32:24 +0800 Subject: [PATCH] v2.6.7 --- x-ui.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x-ui.sh b/x-ui.sh index b75cb4ba..5fff9747 100644 --- a/x-ui.sh +++ b/x-ui.sh @@ -1281,6 +1281,7 @@ echo "" # --------- 域名输入 ---------- read -rp "请输入订阅转换访问域名(例如: sub.xxxxx.com 请务必以sub开头): " SUB_DOMAIN +echo "" read -rp "请输入订阅后端 API 域名(例如: api.xxxxx.com 请务必以api开头): " API_DOMAIN echo "" @@ -1301,6 +1302,7 @@ LOCAL_IP=$(curl -s4m8 ip.p3terx.com -k | sed -n 1p) # --------- 检测域名解析 ---------- echo -e "${yellow}正在检测域名解析情况...${plain}" SUB_IP=$(dig +short $SUB_DOMAIN | tail -n1) +echo "" API_IP=$(dig +short $API_DOMAIN | tail -n1) echo "" @@ -1329,7 +1331,7 @@ echo "" # --------- 安装 acme.sh ---------- if [ ! -f ~/.acme.sh/acme.sh ]; then - echo -e "${yellow}acme.sh 未安装,正在安装...${plain}" + echo -e "${yellow}-------------->>>>>>>>acme.sh 未安装,正在安装...${plain}" curl https://get.acme.sh | sh ~/.acme.sh/acme.sh --upgrade --auto-upgrade else