From 7e3825f8f5e6e31b2318347611b0194fe0862670 Mon Sep 17 00:00:00 2001 From: Kazi Date: Sat, 2 Aug 2025 16:06:57 +0200 Subject: [PATCH] More verbose help text for TLS certificate flag (#429) * Clarify TLS key in help text * More verbose help text --------- Signed-off-by: Kazi --- copyparty/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/__main__.py b/copyparty/__main__.py index 609a534e..71a06033 100644 --- a/copyparty/__main__.py +++ b/copyparty/__main__.py @@ -1109,7 +1109,7 @@ def add_tls(ap, cert_path): ap2 = ap.add_argument_group('SSL/TLS options') ap2.add_argument("--http-only", action="store_true", help="disable ssl/tls -- force plaintext") ap2.add_argument("--https-only", action="store_true", help="disable plaintext -- force tls") - ap2.add_argument("--cert", metavar="PATH", type=u, default=cert_path, help="path to TLS certificate") + ap2.add_argument("--cert", metavar="PATH", type=u, default=cert_path, help="path to file containing a concatenation of TLS key and certificate chain") ap2.add_argument("--ssl-ver", metavar="LIST", type=u, default="", help="set allowed ssl/tls versions; [\033[32mhelp\033[0m] shows available versions; default is what your python version considers safe") ap2.add_argument("--ciphers", metavar="LIST", type=u, default="", help="set allowed ssl/tls ciphers; [\033[32mhelp\033[0m] shows available ciphers") ap2.add_argument("--ssl-dbg", action="store_true", help="dump some tls info")