diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:44:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:44:04 +0000 |
commit | a8f5b77b51bf83a1e838838ca46513bfbfe7252e (patch) | |
tree | 20b8509daf30bb610d2034189c5aa5369dfe314f /debian/local | |
parent | user.js: Disabling autoplay of HTML5 media. (diff) | |
download | firefox-a8f5b77b51bf83a1e838838ca46513bfbfe7252e.tar.xz firefox-a8f5b77b51bf83a1e838838ca46513bfbfe7252e.zip |
user.js: Setting increased network connection limits.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/local')
-rw-r--r-- | debian/local/pref/user.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/debian/local/pref/user.js b/debian/local/pref/user.js index 6267f57477..f4d8e4d558 100644 --- a/debian/local/pref/user.js +++ b/debian/local/pref/user.js @@ -1102,3 +1102,9 @@ user_pref("layout.spellcheckDefault", 0); user_pref("media.autoplay.default", 5); user_pref("media.autoplay.blocking_policy", 2); + +user_pref("network.http.max-connections", 1800); +user_pref("network.http.max-persistent-connections-per-proxy", 64); +user_pref("network.http.max-persistent-connections-per-server", 12); +user_pref("network.http.max-urgent-start-excessive-connections-per-host", 6); +user_pref("network.websocket.max-connections", 400); |