diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:07:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:09:34 +0000 |
commit | 19b2f425dce0bc2dfe4f807045cd2a2c83eb82b3 (patch) | |
tree | 3d3362f6f637b7a6c57826020d5ded9b3503a2b6 /debian | |
parent | user.js: Disabling autoplay of HTML5 media. (diff) | |
download | firefox-19b2f425dce0bc2dfe4f807045cd2a2c83eb82b3.tar.xz firefox-19b2f425dce0bc2dfe4f807045cd2a2c83eb82b3.zip |
user.js: Setting increased network connection limits.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-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 b2af6c5a47..f951ed40a8 100644 --- a/debian/local/pref/user.js +++ b/debian/local/pref/user.js @@ -1063,3 +1063,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); |