Skip to content

Commit 806ac9f

Browse files
authored
Merge pull request #277 from linuxserver/dns-updates
Dns updates
2 parents e2d02de + 53db975 commit 806ac9f

File tree

11 files changed

+51
-43
lines changed

11 files changed

+51
-43
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ RUN \
116116
certbot-dns-dnspod \
117117
certbot-dns-do \
118118
certbot-dns-domeneshop \
119+
certbot-dns-duckdns \
119120
certbot-dns-dynu \
120121
certbot-dns-gehirn \
121122
certbot-dns-godaddy \

Dockerfile.aarch64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ RUN \
116116
certbot-dns-dnspod \
117117
certbot-dns-do \
118118
certbot-dns-domeneshop \
119+
certbot-dns-duckdns \
119120
certbot-dns-dynu \
120121
certbot-dns-gehirn \
121122
certbot-dns-godaddy \

Dockerfile.armhf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ RUN \
116116
certbot-dns-dnspod \
117117
certbot-dns-do \
118118
certbot-dns-domeneshop \
119+
certbot-dns-duckdns \
119120
certbot-dns-dynu \
120121
certbot-dns-gehirn \
121122
certbot-dns-godaddy \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
336336

337337
## Versions
338338

339+
* **06.10.22:** - Switch to certbot-dns-duckdns. Update cpanel and gandi dns plugin handling. Minor adjustments to init logic.
339340
* **05.10.22:** - Use certbot file hooks instead of command line hooks
340341
* **04.10.22:** - Add godaddy and porkbun dns plugins.
341342
* **03.10.22:** - Add default_server back to default site conf's https listen.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ app_setup_nginx_reverse_proxy_block: ""
156156

157157
# changelog
158158
changelogs:
159+
- { date: "06.10.22:", desc: "Switch to certbot-dns-duckdns. Update cpanel and gandi dns plugin handling. Minor adjustments to init logic." }
159160
- { date: "05.10.22:", desc: "Use certbot file hooks instead of command line hooks" }
160161
- { date: "04.10.22:", desc: "Add godaddy and porkbun dns plugins." }
161162
- { date: "03.10.22:", desc: "Add default_server back to default site conf's https listen." }

root/app/duckdns-txt

Lines changed: 0 additions & 8 deletions
This file was deleted.

root/defaults/dns-conf/cpanel.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instructions: https://github.com/badjware/certbot-dns-cpanel#credentials
22
# Replace with your values
33
# include the scheme and the port number (usually 2083 for https)
4-
certbot_dns_cpanel:cpanel_url = https://cpanel.example.com:2083
5-
certbot_dns_cpanel:cpanel_username = username
6-
certbot_dns_cpanel:cpanel_password = 1234567890abcdef
4+
dns_cpanel_url = https://cpanel.example.com:2083
5+
dns_cpanel_username = username
6+
dns_cpanel_password = 1234567890abcdef

root/defaults/dns-conf/duckdns.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Instructions: https://github.com/infinityofspace/certbot_dns_duckdns#credentials-file-or-cli-parameters
2+
# Replace with your API token from your duckdns account.
3+
dns_duckdns_token=<your-duckdns-token>

root/defaults/dns-conf/gandi.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Instructions: https://github.com/obynio/certbot-plugin-gandi#usage
22
# Replace with your value
3-
certbot_plugin_gandi:dns_api_key=APIKEY
3+
# live dns v5 api key
4+
dns_gandi_api_key=APIKEY
5+
6+
# optional organization id, remove it if not used
7+
#dns_gandi_sharing_id=SHARINGID
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Instructions: https://github.com/Infomaniak/certbot-dns-infomaniak#via-ini-file
1+
# Instructions: https://github.com/Infomaniak/certbot-dns-infomaniak#via-ini-file
22
# Replace with your values
33
dns_infomaniak_token = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

0 commit comments

Comments
 (0)