From d96d324cd38a9b6c7263484c8b7572a6ec4ea53f Mon Sep 17 00:00:00 2001 From: Les Potter Date: Tue, 31 Mar 2020 14:23:41 -0400 Subject: [PATCH] The instructions for generating the DHPARAM didn't create the file, I looked at the man page for openssl-dhparam and it says to put the number of bits at the end of the command. Doing so, it worked for me. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a67c0379..4d348e51 100644 --- a/README.md +++ b/README.md @@ -518,7 +518,7 @@ Trying to use a feature requiring a disabled microservice will result in an erro #### Generating Diffie-Hellman parameters ```bash -openssl dhparam 4096 -outform PEM -out dh4096.pem +openssl dhparam -outform PEM -out dh4096.pem 4096 ``` #### Generating a self-signed Certification Authority (CA)