Moved to kbin.earth: @jwr1

For kbin.social

  • 10 Posts
  • 6 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle










  • I use Cosmos Cloud because it makes managing my containers and hosting them a lot easier. It includes a reverse proxy (with anti ddos and anti bot), an OIDC server, a container manager (lets you import docker composes too), easy container deploy through app store, multiple users, and more. It’s also supposed to come out with a few features that let you connect through a VPN (so your services are not directly exposed) and set up cgnat bypass / hide your ip.




  • I know I’m late, but here’s the original post:

    I was able to do this without an extension in Firefox. I followed the instructions here.

    These are the steps I took:

    1. Open the Firefox installation folder. For me, this was “C:\Program Files\Mozilla Firefox”

    2. Under this folder, open the “defaults\pref” folder. If not present, make those two folders.

    3. Create a file called “autoconfig.js” inside the “defaults\prefs” folder, and put the following in it. This lets us run our own Javascript to configure the browser. The comment line at the top is required.
      //
      pref("general.config.filename", "autoconfig.cfg");
      pref("general.config.obscure_value", 0);
      pref("general.config.sandbox_enabled", false);

    4. Go back to the Firefox program folder ..\..

    5. Create a file named “autoconfig.cfg”

    6. Put the following in the file, replacing the value of newTabURL with the path to your startpage. This is 5 lines.
      // first line is a comment
      var {classes:Cc,interfaces:Ci,utils:Cu} = Components;
      var newTabURL = "file:///PATH_TO_YOUR_START_PAGE.html";
      aboutNewTabService = Cc["@mozilla.org/browser/aboutnewtab-service;1"].getService(Ci.nsIAboutNewTabService);
      aboutNewTabService.newTabURL = newTabURL;

    7. Profit.