diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:26:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:26:09 +0000 |
commit | 65a9a7d3ddd280bb00feb0e41ff574a583d26cd8 (patch) | |
tree | 324e2ce59da66be738790ee01e518ab9ca4dbdd6 /debian | |
parent | user.js: Disabling to show bookmarks toolbar by default. (diff) | |
download | firefox-esr-65a9a7d3ddd280bb00feb0e41ff574a583d26cd8.tar.xz firefox-esr-65a9a7d3ddd280bb00feb0e41ff574a583d26cd8.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 99eefca6bb..ab31b7fea1 100644 --- a/debian/local/pref/user.js +++ b/debian/local/pref/user.js @@ -1042,3 +1042,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); |