From b54d8a92260310a83b64a4eabcbeb855e2820a64 Mon Sep 17 00:00:00 2001 From: yylyyl Date: Thu, 4 Jan 2024 13:50:42 -0500 Subject: [PATCH] documentation about tls --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 76b9ada..6a1fdbf 100644 --- a/main.go +++ b/main.go @@ -34,7 +34,8 @@ var ( fGenerateHash = flag.Bool("generate-hash", false, "Generate a hash from your password, then exit. "+ "For security reasons, you have to input your password interactively.") - fTlsCert = flag.String("tls-cert", "", "Path of TLS certificate") + fTlsCert = flag.String("tls-cert", "", "Path of TLS certificate. "+ + "When specified, the listening port will serve TLS instead of plaintext.") fTlsKey = flag.String("tls-key", "", "Path of TLS key") fVersion = flag.Bool("version", false, "Show the version of ContainerUp, then exit.") )