From 05180c24eb4b2840fec9c28bc75753df71046820 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 22 Apr 2025 14:19:09 +0000 Subject: [PATCH] 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 --- config/cfgroot/http-client-functions.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.3