nix-infra/hosts/tor-relay/tor.nix

19 lines
339 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ ... }:
{
services.tor = {
enable = true;
settings = {
Nickname = "vsm";
ORPort = 9001;
ExitRelay = false;
SOCKSPort = 0;
ControlSocket = null;
ContactInfo = "admin@grzb.de";
RelayBandwidthRate = "70 MBits";
RelayBandwidthBurst = "150 Mbits";
DirPort = 9030;
};
};
}