From 99125b914880fcff76afa5243d637e4c253b9a7b Mon Sep 17 00:00:00 2001 From: Sascha Marcel Schmidt Date: Thu, 15 Mar 2018 18:18:23 +0100 Subject: [PATCH] fixes common name and organization and base64 (#7727) --- .../services-networking/connect-applications-service.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/concepts/services-networking/connect-applications-service.md b/docs/concepts/services-networking/connect-applications-service.md index 5587498f2b..e6fe3b1f79 100644 --- a/docs/concepts/services-networking/connect-applications-service.md +++ b/docs/concepts/services-networking/connect-applications-service.md @@ -185,10 +185,10 @@ Following are the manual steps to follow in case you run into problems running m ```shell #create a public private key pair -openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /d/tmp/nginx.key -out /d/tmp/nginx.crt -subj "/CN=nginxsvc/O=nginxsvc" +openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /d/tmp/nginx.key -out /d/tmp/nginx.crt -subj "/CN=my-nginx/O=my-nginx" #convert the keys to base64 encoding -cat /d/tmp/nginx.crt | base 64 -cat /d/tmp/nginx.key | base 64 +cat /d/tmp/nginx.crt | base64 +cat /d/tmp/nginx.key | base64 ``` Use the output from the previous commands to create a yaml file as follows. The base64 encoded value should all be on a single line.