···
The port on which the introducer will listen.
29
+
tub.location = mkOption {
31
+
type = types.nullOr types.str;
33
+
The external location that the introducer should listen on.
35
+
If specified, the port should be included.
default = pkgs.tahoelafs;
defaultText = "pkgs.tahoelafs";
···
system to listen on a different port.
72
+
tub.location = mkOption {
74
+
type = types.nullOr types.str;
76
+
The external location that the node should listen on.
78
+
This is the setting to tweak if there are multiple interfaces
79
+
and you want to alter which interface Tahoe is advertising.
81
+
If specified, the port should be included.
···
nickname = ${settings.nickname}
tub.port = ${toString settings.tub.port}
168
+
${optionalString (settings.tub.location != null)
169
+
"tub.location = ${settings.tub.location}"}
# Actually require Tahoe, so that we will have it installed.
···
nickname = ${settings.nickname}
tub.port = ${toString settings.tub.port}
235
+
${optionalString (settings.tub.location != null)
236
+
"tub.location = ${settings.tub.location}"}
# This is a Twisted endpoint. Twisted Web doesn't work on
web.port = tcp:${toString settings.web.port}