19 lines
339 B
Nix
19 lines
339 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
}
|