From 101faa5b5259e1e76ac93677278d620f0b0c16bc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 7 Aug 2021 13:18:44 +0200 Subject: [PATCH] firefox: enable HTTPS-first policy --- dotfiles/firefox.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotfiles/firefox.js b/dotfiles/firefox.js index 82bcbbf..8e0598e 100644 --- a/dotfiles/firefox.js +++ b/dotfiles/firefox.js @@ -75,3 +75,7 @@ user_pref("image.avif.enabled", true); // Disable DoH for now user_pref("network.trr.mode", 5); + +// HTTPS first +user_pref("dom.security.https_first", true); +user_pref("dom.security.https_first_pbm", true);