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!

Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Using policies.json to manage individual profiles on linux

  • 4 réponses
  • 0 a ce problème
  • Dernière réponse par cor-el

more options

I'm having trouble using the policies.json file to manage individual profiles on Linux. I've come across sources that suggest placing the distribution/policies.json file in the profile folder should work, but I can't seem to get it to function as expected.

My use case is to create a separate profile that can only connect to localhost.

I have a few questions:

  • Is there a specific way to use policies.json for managing individual profiles on Linux? If so, what is the correct method?
  • Can the location where Firefox looks for the policies.json file be overwritten for a new process? If yes, how can this be achieved?
I'm having trouble using the policies.json file to manage individual profiles on Linux. I've come across sources that suggest placing the distribution/policies.json file in the profile folder should work, but I can't seem to get it to function as expected. My use case is to create a separate profile that can only connect to localhost. I have a few questions: * Is there a specific way to use policies.json for managing individual profiles on Linux? If so, what is the correct method? * Can the location where Firefox looks for the policies.json file be overwritten for a new process? If yes, how can this be achieved?

Toutes les réponses (4)

more options

distribution/policies.json needs to be in the directory where the Firefox binary is. It could be anywhere but is often in /opt/firefox so the full path would be /opt/firefox/distribution/policies.json.

The easiest way to find it is in Firefox press Alt-H and then choose "More Troubleshooting Information" from the drop-down menu that appears. In the first block of information is a line starting with "Application Binary" with the path next to it. That's where to put distribution/policies.json.

Cela vous a-t-il été utile ?

more options

ThePillenwerfer said

distribution/policies.json needs to be in the directory where the Firefox binary is. It could be anywhere but is often in /opt/firefox so the full path would be /opt/firefox/distribution/policies.json. The easiest way to find it is in Firefox press Alt-H and then choose "More Troubleshooting Information" from the drop-down menu that appears. In the first block of information is a line starting with "Application Binary" with the path next to it. That's where to put distribution/policies.json.

Appreciate the clarification.

However, if placed there, the policies apply to all profiles opened using that binary.

Yet I need a more fine grained control, so that I can have different policies for different profiles. E.g. profileA: no restrictions profileB: about config not allowed, no connections other than localhost allowed.

Cela vous a-t-il été utile ?

more options

All I've ever done with Policies is stop Thunderbird up-dating so can't really help you further.

I would have thought that there'd be some way of saying in the Policy file which things to apply to which profiles. Also if it worked in the ~/.mozilla/firefox/profile directory a user could edit it whereas in /opt or /usr/bin they'd need root permissions.

Cela vous a-t-il été utile ?

more options

policies.json works for all profiles, so you can't have different settings unless you would use multiple installations, each in its own installation folder.

You can however use an autoconfig.cfg file as this file supports JavaScript if you disable the sandbox and in such a case you can place pref settings in an 'if' block that detects the name of the profile.

Content of autoconfig.cfg:

// start autoconfig.cfg with a comment line
let Services = globalThis.Services
let profD = Services.dirsvc.get("ProfD", Ci.nsIFile).path;

Content of autoconfig.js:

//start autoconfig.js with a comment line
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false);

Cela vous a-t-il été utile ?

Poser une question

Vous devez vous identifier avec votre compte pour répondre aux messages. Veuillez poser une nouvelle question, si vous n’avez pas encore de compte.