DuckDNS uses https over http

This commit is contained in:
Patrick Siegl 2020-03-04 14:37:48 +01:00
parent 89c2230ada
commit 56d819f4c4

View file

@ -4781,7 +4781,7 @@ o 'duckdns'
The 'duckdns' protocol is used by the free
dynamic DNS service offered by www.duckdns.org.
Check http://www.duckdns.org/install.jsp?tab=linux-cron for API
Check https://www.duckdns.org/install.jsp?tab=linux-cron for API
Configuration variables applicable to the 'duckdns' protocol are:
protocol=duckdns ##
@ -4792,7 +4792,7 @@ Configuration variables applicable to the 'duckdns' protocol are:
Example ${program}.conf file entries:
## single host update
protocol=duckdns, \\
password=z0mgs3cjur3p4ss \\
password=z0mgs3cjur3p4ss, \\
myhost
EoEXAMPLE
@ -4816,7 +4816,7 @@ sub nic_duckdns_update {
# Set the URL that we're going to to update
my $url;
$url = "http://$config{$h}{'server'}/update";
$url = "https://$config{$h}{'server'}/update";
$url .= "?domains=";
$url .= $h;
$url .= "&token=";