当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

how can i set the global proxy configuration for all users in opensuse 12.3

  • 2 件の返信
  • 5 人がこの問題に困っています
  • 18 回表示
  • 最後の返信者: cor-el

more options

i have linux machines that users log in via Microsoft Active directory. Whenever they log in, they don't get proxy settings configured despite having set this via YAST.

I want that whenever any one logs in, by default they get firefox with proxy set.

i have linux machines that users log in via Microsoft Active directory. Whenever they log in, they don't get proxy settings configured despite having set this via YAST. I want that whenever any one logs in, by default they get firefox with proxy set.

すべての返信 (2)

more options

You can lock preferences. Locked preferences are applied to all Firefox profiles and cannot be modified.

Example of proxy settings locked to "Automatic proxy configuration URL" with a specified configuration URL:

In <installation folder>\mozilla.cfg


//
lockPref("network.proxy.type", 2);
lockPref("network.proxy.autoconfig_url", "https://whatever.theurl.to/your_configuration/file.is");

In <installation folder>\defaults\pref\local-settings.js


pref("general.config.obscure_value", 0); // only needed if you don't want to obscure the content with ROT-13
pref("general.config.filename", "mozilla.cfg");

more options

Note that 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 also: