Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>All of the proxy settings for Firefox, on my machine, are stored in C:\DOCUME~1\BRUCEX~1\APPLIC~1\Mozilla\Firefox\Profiles\licga1pg.default\prefs.js . The header in that file says</p> <pre><code># Mozilla User Preferences /* Do not edit this file. * * If you make changes to this file while the application is running, * the changes will be overwritten when the application exits. * * To make a manual change to preferences, you can visit the URL about:config * For more information, see http://www.mozilla.org/unix/customizing.html#prefs */ </code></pre> <p>The link to customizing.html is <a href="http://www.mozilla.org/unix/customizing.html#prefs" rel="nofollow noreferrer">here</a>. So in theory you could tweak some or all of these</p> <pre><code>user_pref("network.proxy.backup.ftp", "squid.home-server"); user_pref("network.proxy.backup.ftp_port", 3128); user_pref("network.proxy.backup.gopher", "squid.home-server"); user_pref("network.proxy.backup.gopher_port", 3128); user_pref("network.proxy.backup.socks", "squid.home-server"); user_pref("network.proxy.backup.socks_port", 3128); user_pref("network.proxy.backup.ssl", "squid.home-server"); user_pref("network.proxy.backup.ssl_port", 3128); user_pref("network.proxy.ftp", "squid.home-server"); user_pref("network.proxy.ftp_port", 3128); user_pref("network.proxy.gopher", "squid.home-server"); user_pref("network.proxy.gopher_port", 3128); user_pref("network.proxy.http", "squid.home-server"); user_pref("network.proxy.http_port", 3128); user_pref("network.proxy.no_proxies_on", "localhost, 127.0.0.1, *.my-domain"); user_pref("network.proxy.share_proxy_settings", true); user_pref("network.proxy.socks", "squid.home-server"); user_pref("network.proxy.socks_port", 3128); user_pref("network.proxy.ssl", "squid.home-server"); user_pref("network.proxy.ssl_port", 3128); user_pref("network.proxy.type", 1); </code></pre> <p>though there is the issue then of getting Firefox to re-read them.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload