From: Michael Tremer Date: Tue, 22 Apr 2025 14:19:09 +0000 (+0000) Subject: HTTP Client: Change checkip URL to ipfire.org X-Git-Tag: v2.29-core195~14^2~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05180c24eb4b2840fec9c28bc75753df71046820;p=ipfire-2.x.git HTTP Client: Change checkip URL to ipfire.org This is the same service, but I think it makes more sense to use the ipfire.org domain. Signed-off-by: Michael Tremer --- diff --git a/config/cfgroot/http-client-functions.pl b/config/cfgroot/http-client-functions.pl index c9484c575..51687ffde 100644 --- a/config/cfgroot/http-client-functions.pl +++ b/config/cfgroot/http-client-functions.pl @@ -293,11 +293,11 @@ sub downloader (%) { } # -# Tiny function to grab the public red IPv4 address using LWL. +# Tiny function to grab the public red IPv4 address using an online service. # sub FetchPublicIp { # URL to grab the public IP. - my $url = "https://checkip4.dns.lightningwirelabs.com"; + my $url = "https://checkip4.ipfire.org"; # Call downloader to fetch the public IP. my $response = &downloader("URL" => $url);