From 070ed2a222f2723235e3ab8bc09b4f354e994e15 Mon Sep 17 00:00:00 2001 From: panicbit Date: Sun, 15 Nov 2020 20:23:42 +0100 Subject: [PATCH] add instructions for multiple domains to readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f17d258..6a06f9b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,11 @@ cargo add northstar # Generating a key & certificate +Run ```sh mkdir cert && cd cert openssl req -x509 -nodes -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 ``` +and enter your domain name (e.g. "localhost" for testing) as Common Name (CN). + +Alternatively, if you want to include multiple domains add something like `-addext "subjectAltName = DNS:localhost, DNS:example.org"`.