aboutsummaryrefslogtreecommitdiffstats
path: root/system/services
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-11-18 17:38:30 +0100
committerSoispha <soispha@vhack.eu>2023-11-18 17:46:16 +0100
commit5200f2e8f2dc58a1310a3f96b8c21cf164fe65a3 (patch)
tree670f8434d296ae1c09b033d7630d24badea6ebcc /system/services
parentfix(system/users): change ssh-keys for sils (diff)
downloadnixos-server-5200f2e8f2dc58a1310a3f96b8c21cf164fe65a3.zip
fix(system/services/taskserver): Support both ipv4 and ipv6
Diffstat (limited to '')
-rw-r--r--system/services/taskserver/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/system/services/taskserver/default.nix b/system/services/taskserver/default.nix
index e8cfe85..4ee9a31 100644
--- a/system/services/taskserver/default.nix
+++ b/system/services/taskserver/default.nix
@@ -21,7 +21,9 @@ in {
organisations = import ./organisations.nix;
openFirewall = true;
fqdn = "taskserver.vhack.eu";
- listenHost = "taskserver.vhack.eu";
+
+ # This should tell taskd to bind to both ipv6 and ipv4 domains:
+ listenHost = "::";
};
security.acme.certs.taskserver = {
domain = "taskserver.vhack.eu";