diff options
author | siddharth <s@ricketyspace.net> | 2021-04-16 21:35:04 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-04-16 21:35:04 -0400 |
commit | 15c6ba76c53c6de8e00d2a2773f808c6b52b4edb (patch) | |
tree | acf2c92d5f2f50aab9c4d3631ce9a783e0ae3eda | |
parent | 2790256ef7d62c0d1d6c2ff13f6242e4c900935a (diff) |
README.md: document multiple domain support
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |