nixos/tor: add HiddenServiceVersion option
This commit is contained in:
parent
c94ccfd81e
commit
5640aa2814
@ -92,6 +92,7 @@ let
|
|||||||
# Hidden services
|
# Hidden services
|
||||||
+ concatStrings (flip mapAttrsToList cfg.hiddenServices (n: v: ''
|
+ concatStrings (flip mapAttrsToList cfg.hiddenServices (n: v: ''
|
||||||
HiddenServiceDir ${torDirectory}/onion/${v.name}
|
HiddenServiceDir ${torDirectory}/onion/${v.name}
|
||||||
|
${optionalString (v.version != null) "HiddenServiceVersion ${toString v.version}"}
|
||||||
${flip concatMapStrings v.map (p: ''
|
${flip concatMapStrings v.map (p: ''
|
||||||
HiddenServicePort ${toString p.port} ${p.destination}
|
HiddenServicePort ${toString p.port} ${p.destination}
|
||||||
'')}
|
'')}
|
||||||
@ -667,6 +668,12 @@ in
|
|||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
version = mkOption {
|
||||||
|
default = null;
|
||||||
|
description = "Rendezvous service descriptor version to publish for the hidden service. Currently, versions 2 and 3 are supported. (Default: 2)";
|
||||||
|
type = types.nullOr (types.enum [ 2 3 ]);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
Loading…
Reference in New Issue
Block a user