1. 12
  1.  

  2. 3

    It would be nice if they included some non-Linux systems (assumption based on their Ansible config repo) to contribute to a more heterogeneous relay ecosystem.

    1. 2

      I run a little Tor Relay as well. I use NixOS for it which made setting it up ridiculously easy. Someone posted 3 lines you had to put into your configuration.nix, then run nixos-rebuild switch, and boom, now you’re running a Tor Relay.

      For those interested:

      services.tor.relay = {
        enable = true;
        isBridge = true;
        port = 443;
      };
      
      1. 2

        If you want to do a little more than running a relay, but don’t want to take the risk of running an exit, please also consider adding this line to your torrc to mirror directory metadata:

        DirPort auto