Skip to content

Commit dfce240

Browse files
committed
Refine wording
1 parent 5bf0f4b commit dfce240

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/user-side-certificates/manual-deployment.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ To install a certificate for use in a Docker container:
630630

631631
Java may have multiple certificate keystore locations depending on different installations or applications that include Java. Depending on your Java Virtual Machine (JVM) installation, you may need to install the certificate for each instance. You may also need to manually configure each Java application to use and trust the certificate.
632632

633-
To trust a Cloudflare root certificate in the system JVM, follow the procedure for your operating system. These steps require you to [download a `.pem` certificate](#download-the-cloudflare-root-certificate).
633+
To install a Cloudflare root certificate in the system JVM, follow the procedure for your operating system. These steps require you to [download a `.pem` certificate](#download-the-cloudflare-root-certificate).
634634

635635
<Tabs>
636636
<TabItem label="macOS and Linux" icon="seti:shell">
@@ -643,7 +643,7 @@ To trust a Cloudflare root certificate in the system JVM, follow the procedure f
643643
openssl x509 -in Cloudflare_CA.pem -inform pem -out Cloudflare_CA.der -outform der
644644
```
645645

646-
3. Import the converted format into the Java keystore.
646+
3. Import the converted certificate into the Java keystore.
647647

648648
```sh
649649
sudo $JAVA_HOME/bin/keytool -import -trustcacerts -alias 'Cloudflare Root CA' -file Cloudflare_CA.der -keystore $JAVA_HOME/jre/lib/security/cacerts -storepass changeit -noprompt 2>&1
@@ -663,7 +663,7 @@ To trust a Cloudflare root certificate in the system JVM, follow the procedure f
663663
openssl x509 -in Cloudflare_CA.pem -inform pem -out Cloudflare_CA.der -outform der
664664
```
665665

666-
3. Import the converted format into the Java keystore.
666+
3. Import the converted certificate into the Java keystore.
667667

668668
```powershell
669669
"%JAVA_HOME%\bin\keytool" -import -trustcacerts -alias "Cloudflare Root CA" -file Cloudflare_CA.der -keystore "%JAVA_HOME%\jre\lib\security\cacerts" -storepass changeit -noprompt

0 commit comments

Comments
 (0)