From 597534f5331f666a1a47d0925fb2bef5d1502f8b Mon Sep 17 00:00:00 2001 From: Luflosi Date: Tue, 26 Mar 2024 16:28:50 +0100 Subject: [PATCH] Use long form of CLI option for example `curl` command This makes it easy to know what the option does without having to know the short form. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb54d6a..aa4ad68 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ This will cause `dyndnsd` to ignore the update for IPv6. ## Notes `curl` command illustrating the URL syntax: ```sh -curl -v 'https://[::1]:9841/update?user=bob&pass=123456&ipv4=1.2.3.4&ipv6=1::2' +curl --verbose 'https://[::1]:9841/update?user=bob&pass=123456&ipv4=1.2.3.4&ipv6=1::2' ``` You should use a reverse proxy server like Nginx for TLS so that passwords are encrypted while they are transmitted over the internet.