From 15c6ba76c53c6de8e00d2a2773f808c6b52b4edb Mon Sep 17 00:00:00 2001 From: siddharth Date: Fri, 16 Apr 2021 21:35:04 -0400 Subject: README.md: document multiple domain support --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b96bbdf..7799b9f 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,14 @@ This is the key that you will get signed for free for your domain (replace and CSR for your domain, you can skip this step. ```sh -# Generate domain key. +# Generate domain key openssl genrsa -aes256 -out domain.key 4096 # Generate CSR openssl req -new -sha256 -key domain.key -out domain.csr + +# Or Generate CSR with multiple domains +openssl req -new -sha256 -key domain.key -subj "/" -addext "subjectAltName = DNS:example.com, DNS:www.example.com" > domain.csr ``` Third, you run the script using python and passing in the path to your user -- cgit v1.2.3