Skip to content

Commit 8c65e04

Browse files
committed
Add Linux instructions
1 parent ae73897 commit 8c65e04

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

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

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,28 +86,31 @@ To access the installed certificate in Windows:
8686

8787
The WARP client will also place the certificate in `%PROGRAMDATA%\Cloudflare\installed_cert.pem` for reference by scripts or tools.
8888

89-
### Linux
89+
### Debian-based Linux distributions
9090

91-
On Linux, the certificate is stored in `/usr/local/share/ca-certificates`. The default Cloudflare certificate name is `managed-warp.pem`.
91+
On Debian-based Linux distributions, the certificate is stored in `/usr/local/share/ca-certificates`. The default installed Cloudflare certificate name is `managed-warp.pem`. The WARP client will create a symbolic link named `managed-warp.crt` to use as its root certificate. If your system is not using `managed-warp.crt`, run the following commands to update the system store:
9292

93-
If you cannot find the certificate, run the following commands to update the system store:
94-
95-
1. Go to the system certificate store.
93+
1. Update your list of custom CA certificates.
9694

9795
```sh
98-
cd /usr/local/share/ca-certificates
96+
sudo update-ca-certificates
9997
```
10098

101-
2. Rename the certificate, changing the file extension to `.crt`.
99+
2. Go to the system certificate store.
102100

103101
```sh
104-
sudo mv managed-warp.pem managed-warp.crt
102+
cd /usr/local/share/ca-certificates
105103
```
106104

107-
3. Update your list of custom CA certificates.
105+
3. Verify your system has both the `managed-warp.pem` file and the `managed-warp.crt` symbolic link. For example:
108106

109107
```sh
110-
sudo update-ca-certificates
108+
ls -l
109+
```
110+
111+
```sh output
112+
lrwxrwxrwx 1 root root 49 Jan 3 21:46 managed-warp.crt -> /usr/local/share/ca-certificates/managed-warp.pem
113+
-rw-r--r-- 1 root root 1139 Jan 3 21:46 managed-warp.pem
111114
```
112115

113116
The WARP client will also place the certificate in `/var/lib/cloudflare-warp/installed_cert.pem` for reference by scripts or tools.

0 commit comments

Comments
 (0)