sijie closed pull request #2531: Typo in CSR generation docs (#2530) URL: https://github.com/apache/incubator-pulsar/pull/2531
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/site2/docs/security-tls-authentication.md b/site2/docs/security-tls-authentication.md index d5eb7d7ebe..10578d2ee2 100644 --- a/site2/docs/security-tls-authentication.md +++ b/site2/docs/security-tls-authentication.md @@ -30,7 +30,7 @@ Generate the certificate request. When asked for a **common name**, enter the ** ```bash $ openssl req -config openssl.cnf \ - -key admin.key.pem -new -sha256 -out admin.cert.pem + -key admin.key.pem -new -sha256 -out admin.csr.pem ``` Sign with request with the certificate authority. Note that that client certs uses the **usr_cert** extension, which allows the cert to be used for client authentication. diff --git a/site2/docs/security-tls-transport.md b/site2/docs/security-tls-transport.md index 70db61f0be..460d2d0a6b 100644 --- a/site2/docs/security-tls-transport.md +++ b/site2/docs/security-tls-transport.md @@ -96,7 +96,7 @@ Generate the certificate request... ```bash $ openssl req -config openssl.cnf \ - -key broker.key.pem -new -sha256 -out broker.cert.pem + -key broker.key.pem -new -sha256 -out broker.csr.pem ``` ... and sign it with the certificate authority. diff --git a/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-authentication.md b/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-authentication.md index a9af2b7289..121ab17f14 100644 --- a/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-authentication.md +++ b/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-authentication.md @@ -31,7 +31,7 @@ Generate the certificate request. When asked for a **common name**, enter the ** ```bash $ openssl req -config openssl.cnf \ - -key admin.key.pem -new -sha256 -out admin.cert.pem + -key admin.key.pem -new -sha256 -out admin.csr.pem ``` Sign with request with the certificate authority. Note that that client certs uses the **usr_cert** extension, which allows the cert to be used for client authentication. diff --git a/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-transport.md b/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-transport.md index 9924ed530c..6981b8f639 100644 --- a/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-transport.md +++ b/site2/website/versioned_docs/version-2.1.0-incubating/security-tls-transport.md @@ -97,7 +97,7 @@ Generate the certificate request... ```bash $ openssl req -config openssl.cnf \ - -key broker.key.pem -new -sha256 -out broker.cert.pem + -key broker.key.pem -new -sha256 -out broker.csr.pem ``` ... and sign it with the certificate authority. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
