Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 03277b7

Browse files
committed
change listings in alphabetical order
1 parent a5128b5 commit 03277b7

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ RUN \
9393
pip && \
9494
pip3 install -U \
9595
${CERTBOT} \
96+
certbot-dns-aliyun \
9697
certbot-dns-cloudflare \
9798
certbot-dns-cloudxns \
9899
certbot-dns-cpanel \
@@ -109,7 +110,6 @@ RUN \
109110
certbot-dns-rfc2136 \
110111
certbot-dns-route53 \
111112
certbot-dns-transip \
112-
certbot-dns-aliyun \
113113
certbot-plugin-gandi \
114114
cryptography \
115115
requests && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ RUN \
9393
pip && \
9494
pip3 install -U \
9595
${CERTBOT} \
96+
certbot-dns-aliyun \
9697
certbot-dns-cloudflare \
9798
certbot-dns-cloudxns \
9899
certbot-dns-cpanel \
@@ -109,7 +110,6 @@ RUN \
109110
certbot-dns-rfc2136 \
110111
certbot-dns-route53 \
111112
certbot-dns-transip \
112-
certbot-dns-aliyun \
113113
certbot-plugin-gandi \
114114
cryptography \
115115
requests && \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ RUN \
9393
pip && \
9494
pip3 install -U \
9595
${CERTBOT} \
96+
certbot-dns-aliyun \
9697
certbot-dns-cloudflare \
9798
certbot-dns-cloudxns \
9899
certbot-dns-cpanel \
@@ -109,7 +110,6 @@ RUN \
109110
certbot-dns-rfc2136 \
110111
certbot-dns-route53 \
111112
certbot-dns-transip \
112-
certbot-dns-aliyun \
113113
certbot-plugin-gandi \
114114
cryptography \
115115
requests && \

readme-vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ cap_add_param_vars:
5151
# optional container parameters
5252
opt_param_usage_include_env: true
5353
opt_param_env_vars:
54-
- { env_var: "DNSPLUGIN", env_value: "cloudflare", desc: "Required if `VALIDATION` is set to `dns`. Options are `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `google`, `inwx`, `linode`, `luadns`, `nsone`, `ovh`, `rfc2136`, `route53` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`." }
54+
- { env_var: "DNSPLUGIN", env_value: "cloudflare", desc: "Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `google`, `inwx`, `linode`, `luadns`, `nsone`, `ovh`, `rfc2136`, `route53` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`." }
5555
- { env_var: "DUCKDNSTOKEN", env_value: "<token>", desc: "Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org" }
5656
- { env_var: "EMAIL", env_value: "<e-mail>", desc: "Optional e-mail address used for cert expiration notifications." }
5757
- { env_var: "DHLEVEL", env_value: "2048", desc: "Dhparams bit value (default=2048, can be set to `1024` or `4096`)." }
@@ -125,6 +125,7 @@ app_setup_nginx_reverse_proxy_block: ""
125125

126126
# changelog
127127
changelogs:
128+
- { date: "23.02.20:", desc: "Add aliyun dns validation plugin." }
128129
- { date: "28.01.20:", desc: "Deprecate tls-sni validation method, remove from docs." }
129130
- { date: "27.01.20:", desc: "Add support for cpanel dns validation." }
130131
- { date: "10.01.20:", desc: "Add support for domeneshop dns validation." }

root/etc/cont-init.d/50-config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ cp /config/fail2ban/jail.local /etc/fail2ban/jail.local
7676
cp /defaults/ldap.conf /config/nginx/ldap.conf
7777

7878
# check to make sure DNSPLUGIN is selected if dns validation is used
79-
[[ "$VALIDATION" = "dns" ]] && [[ ! "$DNSPLUGIN" =~ ^(cloudflare|cloudxns|cpanel|digitalocean|dnsimple|dnsmadeeasy|domeneshop|gandi|google|inwx|linode|luadns|nsone|ovh|rfc2136|route53|transip|aliyun)$ ]] && \
79+
[[ "$VALIDATION" = "dns" ]] && [[ ! "$DNSPLUGIN" =~ ^(aliyun|cloudflare|cloudxns|cpanel|digitalocean|dnsimple|dnsmadeeasy|domeneshop|gandi|google|inwx|linode|luadns|nsone|ovh|rfc2136|route53|transip)$ ]] && \
8080
echo "Please set the DNSPLUGIN variable to a valid plugin name. See docker info for more details." && \
8181
sleep infinity
8282

@@ -180,7 +180,7 @@ if [ "$VALIDATION" = "dns" ]; then
180180
PREFCHAL="-a certbot-plugin-${DNSPLUGIN}:dns --certbot-plugin-${DNSPLUGIN}:dns-credentials /config/dns-conf/${DNSPLUGIN}.ini --manual-public-ip-logging-ok"
181181
elif [[ "$DNSPLUGIN" =~ ^(google)$ ]]; then
182182
PREFCHAL="--dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.json --manual-public-ip-logging-ok --dns-${DNSPLUGIN}-propagation-seconds 120"
183-
elif [[ "$DNSPLUGIN" =~ ^(domeneshop|inwx|transip|aliyun)$ ]]; then
183+
elif [[ "$DNSPLUGIN" =~ ^(aliyun|domeneshop|inwx|transip)$ ]]; then
184184
PREFCHAL="-a certbot-dns-${DNSPLUGIN}:dns-${DNSPLUGIN} --certbot-dns-${DNSPLUGIN}:dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini --manual-public-ip-logging-ok --certbot-dns-${DNSPLUGIN}:dns-${DNSPLUGIN}-propagation-seconds 180"
185185
else
186186
PREFCHAL="--dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini --manual-public-ip-logging-ok"

0 commit comments

Comments
 (0)