Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

How do I centralize default values like proxies so all users on a host inherit it?

  • 1 Antwort
  • 1 hat dieses Problem
  • 9 Aufrufe
  • Letzte Antwort von cor-el

more options

I want all new users of firefox on our Linux host to have the same default proxy settings. I don't want them to enter it through the preferences menu.

Is there a central place on the machine (i.e. /etc or /usr/share) where I can input the proxy settings and any user starting firefox will inherit them?

I want all new users of firefox on our Linux host to have the same default proxy settings. I don't want them to enter it through the preferences menu. Is there a central place on the machine (i.e. /etc or /usr/share) where I can input the proxy settings and any user starting firefox will inherit them?

Alle Antworten (1)

more options

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");

These functions can be used in the mozilla.cfg file:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

See: