Skip to content

Instantly share code, notes, and snippets.

@darkgeek
Last active December 23, 2015 06:57
Show Gist options
  • Save darkgeek/358895f408cb92448e20 to your computer and use it in GitHub Desktop.
Save darkgeek/358895f408cb92448e20 to your computer and use it in GitHub Desktop.
How to add proxy on Firefox OS?
Append the following lines to `/system/b2g/defaults/pref/user.js`:
pref("network.proxy.backup.ssl", "IP");
pref("network.proxy.backup.ssl_port", PORT);
pref("network.proxy.http", "IP");
pref("network.proxy.http_port", PORT);
pref("network.proxy.no_proxies_on", "");
pref("network.proxy.share_proxy_settings", true);
pref("network.proxy.ssl", "IP");
pref("network.proxy.ssl_port", PORT);
pref("network.proxy.type", 1);
pref("network.proxy.pac_generator", false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment