Config

Contents

    Note: Ubuntu installs xul-ext-ubufox to tweek firefox. Today, it acts as a placeholder for future updates (see package content).

    about:certificate

    Basic infos

    Manual Config

    Misc

    User defined preferences

    All the following configuration is stored inside the user home folder (the profile folder, to be precise).

    Documentation

    The following files are located inside the profile folder

    → See homemade user.js file

    Simple system level config

    Inside /etc/firefox/syspref.js → WARNING: This path may be installation dependant

    Changes the default value : the user can update it
    pref("browser.startup.homepage", "https://ubuntu.com/");

    Forces the value (user can't change it!)
    pref("browser.startup.homepage", "https://ubuntu.com", locked);
    NOTE : lockPref("browser.startup.homepage", "https://ubuntu.com"); does NOT work on recent releases!

    Advanced system level config

    PRO tip : it is possible to reference a REMOTE file. See autoadmin.global_config_url

    Sources

    $ cat /usr/lib/firefox/defaults/pref/autoconfig.js
    // The first line MUST be a comment
    // a "good" name for this file can be local-settings.js or autoconfig.js
    pref("general.config.filename", "firefox.cfg");
    pref("general.config.obscure_value", 0);
    
    $ cat /usr/lib/firefox/firefox.cfg
    // the first line MUST be a comment
    ...
    

    In an enterprise environment : using policies.json


    Attachments

    Proudly Powered by Zim 0.75.2.

    Template by Etienne Gandrille, based on ZeroFiveEight and using JQuery Toc Plugin.