From 360cd8b8e8ad882026556402f965f46de0ce7a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Wed, 3 Jan 2024 09:39:03 +0100 Subject: [PATCH] Update certificate/key format in CLI --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 76929ce..eb6247d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -220,12 +220,12 @@ struct Server { )] restrict_http_upgrade_path_prefix: Option>, - /// [Optional] Use custom certificate (.crt) instead of the default embedded self signed certificate. + /// [Optional] Use custom certificate (.pem) instead of the default embedded self signed certificate. /// The certificate will be automatically reloaded if it changes #[arg(long, value_name = "FILE_PATH", verbatim_doc_comment)] tls_certificate: Option, - /// [Optional] Use a custom tls key (.key) that the server will use instead of the default embedded one + /// [Optional] Use a custom tls key (.pem) that the server will use instead of the default embedded one /// The private key will be automatically reloaded if it changes #[arg(long, value_name = "FILE_PATH", verbatim_doc_comment)] tls_private_key: Option,