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

19 lines
338 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";
2023-07-15 23:29:19 +02:00
RelayBandwidthRate = "40 MBits";
RelayBandwidthBurst = "50 Mbits";
2023-07-10 15:30:51 +02:00
DirPort = 9030;
};
};
}