From 2a3477245764c07131cf07d91d585b37a4a1dc2a Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Mon, 4 Dec 2023 10:49:57 -0500 Subject: [PATCH] Use the correct Ipify API URL --- blog/posts/2023-12-02_make-your-own-ddns/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/posts/2023-12-02_make-your-own-ddns/index.md b/blog/posts/2023-12-02_make-your-own-ddns/index.md index c28090b..af00d3f 100644 --- a/blog/posts/2023-12-02_make-your-own-ddns/index.md +++ b/blog/posts/2023-12-02_make-your-own-ddns/index.md @@ -143,7 +143,7 @@ ## The Script const GODADDY_API_SECRET = "secret"; // If you prefer to use Ipify instead, change this URL to: -// https://www.ipify.org +// https://api.ipify.org const publicIpUrl = "https://ipme.fosterhangdaan.com"; const goDaddyUrl = `https://api.godaddy.com/v1/domains/${domain}/records/A/@`;