different wgautomesh gossip ports for prod and staging

This commit is contained in:
Alex 2023-05-04 13:39:33 +02:00
parent 607add3161
commit 6c07a42978
2 changed files with 8 additions and 1 deletions

View file

@ -38,6 +38,8 @@
endpoint = "bitfrost.fiber.shirokumo.net:33734"; endpoint = "bitfrost.fiber.shirokumo.net:33734";
}; };
}; };
deuxfleurs.wgautomeshPort = 1667;
services.wgautomesh.logLevel = "debug"; services.wgautomesh.logLevel = "debug";
# Bootstrap IPs for Consul cluster, # Bootstrap IPs for Consul cluster,

View file

@ -117,6 +117,11 @@ in
type = port; type = port;
default = 33799; default = 33799;
}; };
wgautomeshPort = mkOption {
description = "Gossip port for wgautomesh";
type = port;
default = 1666;
};
}; };
imports = [ imports = [
@ -245,7 +250,7 @@ in
services.wgautomesh = { services.wgautomesh = {
enable = true; enable = true;
interface = "wg0"; interface = "wg0";
gossipPort = 1666; gossipPort = cfg.wgautomeshPort;
gossipSecretFile = "/var/lib/wgautomesh/gossip_secret"; gossipSecretFile = "/var/lib/wgautomesh/gossip_secret";
persistFile = "/var/lib/wgautomesh/state"; persistFile = "/var/lib/wgautomesh/state";
upnpForwardPublicPort = upnpForwardPublicPort =