From 80b83a51a323d5c32ac4e7383dfdc34b3f86c3a1 Mon Sep 17 00:00:00 2001 From: koolhead17 Date: Thu, 23 Mar 2017 20:50:40 +0530 Subject: [PATCH] Docs: Fix for Self signed certificate. (#3957) --- docs/tls/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tls/README.md b/docs/tls/README.md index 86d69d996..2079931d2 100644 --- a/docs/tls/README.md +++ b/docs/tls/README.md @@ -37,7 +37,7 @@ openssl genrsa -out private.key 1024 Generate the self-signed certificate: ```sh -openssl req -new -x509 -days 3650 -key private.key -out public.crt -subj "/C=country/ST=state/L=location/O=organization/CN=domain" +openssl req -new -x509 -days 3650 -key private.key -out public.crt -subj "/C=US/ST=state/L=location/O=organization/CN=domain" ``` ### Windows