mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-11 06:02:03 -08:00
properly enable network isolation
This commit is contained in:
parent
f517c5bd14
commit
07fe4f32b3
2 changed files with 7 additions and 2 deletions
|
|
@ -56,7 +56,6 @@ ac_add_options --enable-hardening
|
||||||
mk_add_options MOZ_HARDENING=1
|
mk_add_options MOZ_HARDENING=1
|
||||||
ac_add_options --disable-jemalloc
|
ac_add_options --disable-jemalloc
|
||||||
ac_add_options --enable-sandbox
|
ac_add_options --enable-sandbox
|
||||||
ac_add_options --enable-network-isolation
|
|
||||||
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland
|
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland
|
||||||
ac_add_options --enable-randomize
|
ac_add_options --enable-randomize
|
||||||
ac_add_options --enable-stack-protector
|
ac_add_options --enable-stack-protector
|
||||||
|
|
|
||||||
|
|
@ -699,3 +699,9 @@ defaultPref("browser.fixup.alternate.enabled", false);
|
||||||
|
|
||||||
// Ensure Fission is working
|
// Ensure Fission is working
|
||||||
defaultPref("fission.autostart", true);
|
defaultPref("fission.autostart", true);
|
||||||
|
|
||||||
|
// Enable network isolation
|
||||||
|
defaultPref("privacy.firstparty.isolate", true);
|
||||||
|
defaultPref("privacy.partition.network_state", true);
|
||||||
|
defaultPref("privacy.storagePrincipal.enabledForTrackers", true);
|
||||||
|
defaultPref("privacy.partition.serviceWorkers", true);
|
||||||
Loading…
Add table
Reference in a new issue