Fungování této stránky je z důvodu údržby dočasně omezeno. Pokud žádný článek nápovědy nevyřeší váš problém a potřebujete se zeptat na další řešení, napište nám na Twitter @FirefoxSupport nebo Reddit /r/firefox.

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

Add exception to self-signed URL system wide

  • 5 odpovědí
  • 1 má tento problém
  • 11 zobrazení
  • Poslední odpověď od 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

Všechny odpovědi (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);