본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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

  • 1 답장
  • 1 이 문제를 만남
  • 9 보기
  • 최종 답변자: 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?

모든 댓글 (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: