Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

policies.json

  • 3 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

Hi

I am having trouble with a proxy promt constantly asking me to log in but I do not want to use proxy so therefore my question regarding setting the proxy settings to "No Proxy" using the policies.json. Is this possible or do I have to do this manually on all users preferences?

Sincerely Seb

Hi I am having trouble with a proxy promt constantly asking me to log in but I do not want to use proxy so therefore my question regarding setting the proxy settings to "No Proxy" using the policies.json. Is this possible or do I have to do this manually on all users preferences? Sincerely Seb

所有回复 (3)

more options
more options

So to I tried to set Proxy to "No Proxy" and used this, but still does not seem to work.

{

 "policies": {
   "Proxy": {
     "Mode": "none",
     "Locked": true,
   }
 }

}

more options

You shouldn't add a trailing comma before a closing '}' : "Locked": true You can check the about:policies#errors page to see whether errors are reported. ---

{
 "policies": {
   "Proxy": {
     "Mode": "none",
     "Locked": true
   }
 }
}