為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Add exception to self-signed URL system wide

  • 5 回覆
  • 1 有這個問題
  • 11 次檢視
  • 最近回覆由 Mike Kaply

more options

Hello everyone.

We are using a software in my company that runs a local server with a self-signed certificate. In order to access the software right now we need to instruct the users to manually bypass the warning page for potencial security risks.

Is there a way to use an autoconfig or policy to automatically add the exception to that specific URL? I see that copying the cert_override.txt file in users profiles will add the exception, but I'd like to avoid that. I've also looked at a question with a similar problem here, but I couldn't get this specific solution to work on my end (Firefox ESR 91): https://support.mozilla.org/en-US/questions/1287443

Hello everyone. We are using a software in my company that runs a local server with a self-signed certificate. In order to access the software right now we need to instruct the users to manually bypass the warning page for potencial security risks. Is there a way to use an autoconfig or policy to automatically add the exception to that specific URL? I see that copying the cert_override.txt file in users profiles will add the exception, but I'd like to avoid that. I've also looked at a question with a similar problem here, but I couldn't get this specific solution to work on my end (Firefox ESR 91): https://support.mozilla.org/en-US/questions/1287443

所有回覆 (5)

more options

That solution should still work if you use autoconfig. What specific problem were you running in to?

more options

Hello Mike,

When using this solution we get an error on startup, saying it failed to read the autoconfig file, see the image attached. I'm using this code on mozilla.cfg, where I store all the pref and lockPref properties, should I use it on local-settings.js instead? Or is there a way to debug this? I can't seem to find an detailed error log for this.

more options

Autoconfig is sandboxed by default. Did you flip the pref so it can run arbitrary code?

If you open up the JS console after this error, it should show exactly what the problem is.

more options

OK, I've got the exact error now: ReferenceError: Services is not defined on mozilla.cfg:16

Is this some import I'm missing? Or maybe it's the pref you told me to flip? What is the name of that pref? I did not find any pref linked to running arbritary code in autoconfig.

more options

In the autoconfig.js where you set the filename and obscure_value, add:

pref("general.config.sandbox_enabled", false);