diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-11-05 15:51:39 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-11-05 15:51:39 +0100 |
commit | d29d1cc84b1c09ef7d0b93f03f957c7b99644910 (patch) | |
tree | f579f6921e61429cadb6f5b609117f6c6759ac78 /modules/libpref | |
parent | 512f78874adfd1de407d087fc2e15716ef9fcfe2 (diff) | |
download | UXP-d29d1cc84b1c09ef7d0b93f03f957c7b99644910.tar UXP-d29d1cc84b1c09ef7d0b93f03f957c7b99644910.tar.gz UXP-d29d1cc84b1c09ef7d0b93f03f957c7b99644910.tar.lz UXP-d29d1cc84b1c09ef7d0b93f03f957c7b99644910.tar.xz UXP-d29d1cc84b1c09ef7d0b93f03f957c7b99644910.zip |
#863 part 2: Make opportunistic encryption opt-in for UXP
This exposes the new pref and also sets the Alt-Svc pref for OE to false.
Basilisk gets a default opt-in for both to stay close to Firefox.
Diffstat (limited to 'modules/libpref')
-rw-r--r-- | modules/libpref/init/all.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index d64357e05..378745ea4 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1593,7 +1593,10 @@ pref("network.http.spdy.default-hpack-buffer", 65536); // 64k // alt-svc allows separation of transport routing from // the origin host without using a proxy. pref("network.http.altsvc.enabled", true); -pref("network.http.altsvc.oe", true); +// Opportunistic encryption use of alt-svc +pref("network.http.altsvc.oe", false); +// Send upgrade-insecure-requests HTTP header? +pref("network.http.upgrade-insecure-requests", false); pref("network.http.diagnostics", false); |