Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

Learn More

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

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

  • 1 válasz
  • 1 embernek van ilyen problémája
  • 9 megtekintés
  • Utolsó üzenet ettől: 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?

Összes válasz (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: