From a12a32fcad97c94263948e1e02eb4db8383fff0f Mon Sep 17 00:00:00 2001 From: wulabing Date: Mon, 14 Jun 2021 13:21:01 +0800 Subject: [PATCH] Xray-1.3.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [fix] 修复 ACME 申请证书上游切换默认CA导致的证书无法签发问题 --- install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 35a5f2d..0483c5e 100644 --- a/install.sh +++ b/install.sh @@ -27,7 +27,7 @@ OK="${Green}[OK]${Font}" ERROR="${Red}[ERROR]${Font}" # 变量 -shell_version="1.3.1" +shell_version="1.3.2" github_branch="main" xray_conf_dir="/usr/local/etc/xray" website_dir="/www/xray_web/" @@ -374,7 +374,8 @@ function ssl_install() { # fi # judge "安装 SSL 证书生成脚本依赖" - curl https://get.acme.sh | sh -s email=my@example.com + read -rp "请输入用于注册域名的邮箱:" domain_email + curl https://get.acme.sh | sh -s email=$domain_email judge "安装 SSL 证书生成脚本" }