Install the CleanBrowsing Root CA certificate to prevent SSL/TLS warnings when accessing blocked HTTPS pages. Required for block pages to display correctly.
When CleanBrowsing blocks an HTTPS website, it serves a block page in place of the requested site. The block page certificate is signed by the CleanBrowsing Root Certificate Authority. Without installing this CA certificate, your browser will display SSL/TLS security warnings such as:
Installing the Root CA certificate tells your browser to trust CleanBrowsing's block page certificates, allowing the block page to display cleanly without security warnings.
Download the CleanBrowsing Root CA certificate file from:
Download CleanBrowsing Root CA (.crt)
Direct URL: https://my.cleanbrowsing.org/download/CleanBrowsing-Filter-BlockPage-CA.crt
Save the file to a location you can easily find, such as your Downloads folder.
This method works for Internet Explorer, Edge, and Chrome (which use the Windows certificate store):
CleanBrowsing-Filter-BlockPage-CA.crt fileRestart your browser for the change to take effect.
For scripted or automated deployments, use certutil from an elevated Command Prompt (Run as Administrator):
certutil -addstore -enterprise -f Root CleanBrowsing-Filter-BlockPage-CA.crt
This installs the certificate into the Local Machine's Trusted Root Certification Authorities store, making it available to all users on the computer.
To verify the certificate was installed:
certutil -store Root "CleanBrowsing"
GUI method:
.crt file to open it in Keychain AccessTerminal method:
# Download the certificate
wget -P ~/Downloads https://my.cleanbrowsing.org/download/CleanBrowsing-Filter-BlockPage-CA.crt
# Install to the System keychain
sudo /usr/bin/security add-trusted-cert -d -r trustRoot -p ssl -p basic \
-k /Library/Keychains/System.keychain \
~/Downloads/CleanBrowsing-Filter-BlockPage-CA.crt
You will be prompted for your administrator password.
Debian / Ubuntu:
# Download the certificate
wget https://my.cleanbrowsing.org/download/CleanBrowsing-Filter-BlockPage-CA.crt
# Copy to the trusted certificates directory
sudo cp CleanBrowsing-Filter-BlockPage-CA.crt /usr/local/share/ca-certificates/
# Update the certificate store
sudo update-ca-certificates
Red Hat / CentOS / Fedora:
# Download the certificate
wget https://my.cleanbrowsing.org/download/CleanBrowsing-Filter-BlockPage-CA.crt
# Copy to the anchors directory
sudo cp CleanBrowsing-Filter-BlockPage-CA.crt /etc/pki/ca-trust/source/anchors/
# Update the certificate store
sudo update-ca-trust
Note: Linux system certificate stores are used by Chrome and most applications, but Firefox uses its own certificate store (see next step).
Firefox uses its own certificate store, separate from the operating system. You must install the certificate within Firefox even if you already installed it at the OS level:
CleanBrowsing-Filter-BlockPage-CA.crt fileRestart Firefox for the change to take effect.
For organizations managing multiple Windows computers, deploy the certificate via Group Policy:
Important: Group Policy certificate deployment applies to Internet Explorer, Edge, and Chrome. Firefox requires separate configuration or enabling the security.enterprise_roots.enabled setting in Firefox to read from the Windows certificate store.