dnsexit2: Remove https://
from update service URL
This allows the `ssl` setting to control TLS vs. plain HTTP, and makes it possible to create a compatible service that doesn't use TLS (e.g., for testing).
This commit is contained in:
parent
eebb1b8a47
commit
6e5e2ab63f
1 changed files with 1 additions and 1 deletions
|
@ -4190,7 +4190,7 @@ sub nic_dnsexit2_update {
|
||||||
ttl => $config{$h}{'ttl'},
|
ttl => $config{$h}{'ttl'},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
my $url = "https://$config{$h}{'server'}$config{$h}{'path'}";
|
my $url = $config{$h}{'server'} . $config{$h}{'path'};
|
||||||
my $reply = geturl(
|
my $reply = geturl(
|
||||||
proxy => opt('proxy'),
|
proxy => opt('proxy'),
|
||||||
url => $url,
|
url => $url,
|
||||||
|
|
Loading…
Reference in a new issue