Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

how can i set the global proxy configuration for all users in opensuse 12.3

  • 2 απαντήσεις
  • 5 έχουν αυτό το πρόβλημα
  • 18 προβολές
  • Τελευταία απάντηση από cor-el

more options

i have linux machines that users log in via Microsoft Active directory. Whenever they log in, they don't get proxy settings configured despite having set this via YAST.

I want that whenever any one logs in, by default they get firefox with proxy set.

i have linux machines that users log in via Microsoft Active directory. Whenever they log in, they don't get proxy settings configured despite having set this via YAST. I want that whenever any one logs in, by default they get firefox with proxy set.

Όλες οι απαντήσεις (2)

more options

You can lock preferences. Locked preferences are applied to all Firefox profiles and cannot be modified.

Example of proxy settings locked to "Automatic proxy configuration URL" with a specified configuration URL:

In <installation folder>\mozilla.cfg


//
lockPref("network.proxy.type", 2);
lockPref("network.proxy.autoconfig_url", "https://whatever.theurl.to/your_configuration/file.is");

In <installation folder>\defaults\pref\local-settings.js


pref("general.config.obscure_value", 0); // only needed if you don't want to obscure the content with ROT-13
pref("general.config.filename", "mozilla.cfg");

more options

Note that 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 also: