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 7b3aaed..f1d0c3d 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 @@ -133,7 +133,7 @@ ## The Script * address. */ -// Change this value to your domain. +// Change this value to your GoDaddy domain. const domain = "example.com"; // Change this value to your GoDaddy API key. @@ -200,7 +200,7 @@ ## Schedule the Script to Run Every Hour with Cron On the Host Computer, save [the script](#the-script) as a file at `/etc/cron.hourly/ddns.ts`. Make sure to replace some necessary values: -- Replace `example.com` in `const domain = "example.com";` with your domain. +- Replace `example.com` in `const domain = "example.com";` with your GoDaddy domain. - Replace `key` in `const GODADDY_API_KEY = "key";` with your GoDaddy API key. - Replace `secret` in `const GODADDY_API_SECRET = "secret";` with your GoDaddy API secret.