mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-26 15:02:03 +00:00
support "--domain-alias"
This commit is contained in:
parent
875625b147
commit
64821ad4f5
21
acme.sh
21
acme.sh
@ -47,6 +47,7 @@ DEFAULT_DNS_SLEEP=120
|
|||||||
NO_VALUE="no"
|
NO_VALUE="no"
|
||||||
|
|
||||||
W_TLS="tls"
|
W_TLS="tls"
|
||||||
|
DNS_ALIAS_PREFIX="="
|
||||||
|
|
||||||
MODE_STATELESS="stateless"
|
MODE_STATELESS="stateless"
|
||||||
|
|
||||||
@ -2896,7 +2897,11 @@ _clearupdns() {
|
|||||||
_alias_index="$(_math "$_alias_index" + 1)"
|
_alias_index="$(_math "$_alias_index" + 1)"
|
||||||
_debug "_d_alias" "$_d_alias"
|
_debug "_d_alias" "$_d_alias"
|
||||||
if [ "$_d_alias" ]; then
|
if [ "$_d_alias" ]; then
|
||||||
txtdomain="_acme-challenge.$_d_alias"
|
if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
|
||||||
|
txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
|
||||||
|
else
|
||||||
|
txtdomain="_acme-challenge.$_d_alias"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
txtdomain="_acme-challenge.$_dns_root_d"
|
txtdomain="_acme-challenge.$_dns_root_d"
|
||||||
fi
|
fi
|
||||||
@ -3679,7 +3684,11 @@ $_authorizations_map"
|
|||||||
_alias_index="$(_math "$_alias_index" + 1)"
|
_alias_index="$(_math "$_alias_index" + 1)"
|
||||||
_debug "_d_alias" "$_d_alias"
|
_debug "_d_alias" "$_d_alias"
|
||||||
if [ "$_d_alias" ]; then
|
if [ "$_d_alias" ]; then
|
||||||
txtdomain="_acme-challenge.$_d_alias"
|
if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
|
||||||
|
txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
|
||||||
|
else
|
||||||
|
txtdomain="_acme-challenge.$_d_alias"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
txtdomain="_acme-challenge.$_dns_root_d"
|
txtdomain="_acme-challenge.$_dns_root_d"
|
||||||
fi
|
fi
|
||||||
@ -5329,7 +5338,8 @@ Commands:
|
|||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
--domain, -d domain.tld Specifies a domain, used to issue, renew or revoke etc.
|
--domain, -d domain.tld Specifies a domain, used to issue, renew or revoke etc.
|
||||||
--challenge-alias domain.tld The domain alis for DNS alias mode: $_DNS_ALIAS_WIKI
|
--challenge-alias domain.tld The challenge domain alias for DNS alias mode: $_DNS_ALIAS_WIKI
|
||||||
|
--domain-alias domain.tld The domain alias for DNS alias mode: $_DNS_ALIAS_WIKI
|
||||||
--force, -f Used to force to install or force to renew a cert immediately.
|
--force, -f Used to force to install or force to renew a cert immediately.
|
||||||
--staging, --test Use staging server, just for test.
|
--staging, --test Use staging server, just for test.
|
||||||
--debug Output debug info.
|
--debug Output debug info.
|
||||||
@ -5675,6 +5685,11 @@ _process() {
|
|||||||
_challenge_alias="$_challenge_alias$cvalue,"
|
_challenge_alias="$_challenge_alias$cvalue,"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
--domain-alias)
|
||||||
|
cvalue="$DNS_ALIAS_PREFIX$2"
|
||||||
|
_challenge_alias="$_challenge_alias$cvalue,"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
--standalone)
|
--standalone)
|
||||||
wvalue="$NO_VALUE"
|
wvalue="$NO_VALUE"
|
||||||
if [ -z "$_webroot" ]; then
|
if [ -z "$_webroot" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user