You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cloudflare-one/connections/connect-devices/user-side-certificates/manual-deployment.mdx
+50-2Lines changed: 50 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -626,6 +626,54 @@ To install a certificate for use in a Docker container:
626
626
627
627
</TabItem> </Tabs>
628
628
629
+
### Java
630
+
631
+
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.
632
+
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).
634
+
635
+
<Tabs>
636
+
<TabItemlabel="macOS and Linux"icon="seti:shell">
637
+
638
+
1. Install [OpenSSL](https://www.openssl.org/).
639
+
640
+
2. In a terminal, format the Cloudflare certificate for Java.
641
+
642
+
```sh
643
+
openssl x509 -in Cloudflare_CA.pem -inform pem -out Cloudflare_CA.der -outform der
@@ -662,7 +710,7 @@ If you use Kaniko with Google Cloud SDK, you must install a Cloudflare certifica
662
710
663
711
#### Google Drive for desktop
664
712
665
-
To trust a Cloudflare root certificate in the Google Drive desktop application, follow the procedure for your operating system. These steps require you to [download the .pem certificate](#download-the-cloudflare-root-certificate).
713
+
To trust a Cloudflare root certificate in the Google Drive desktop application, follow the procedure for your operating system. These steps require you to [download a `.pem` certificate](#download-the-cloudflare-root-certificate).
666
714
667
715
<Tabs>
668
716
<TabItemlabel="macOS"icon="apple">
@@ -760,7 +808,7 @@ To set the location of the certificate for use as an environment variable:
760
808
761
809
### PHP Composer
762
810
763
-
The command below will set the [`cafile`](https://getcomposer.org/doc/06-config.md#cafile) configuration inside of `composer.json` to use the Cloudflare root certificate. Make sure to [download the certificate](#download-the-cloudflare-root-certificate) in the `.pem` file type.
811
+
The command below will set the [`cafile`](https://getcomposer.org/doc/06-config.md#cafile) configuration inside of `composer.json` to use the Cloudflare root certificate. Make sure to [download a certificate](#download-the-cloudflare-root-certificate) in the `.pem` file type.
0 commit comments