summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-11-18 17:38:30 +0100
committerSoispha <soispha@vhack.eu>2023-11-18 17:39:42 +0100
commit6948186c481fa55a487afe7660c4e6d22a7cc320 (patch)
treeb693b15a3255666bb726a9032f33bdd905acbdfc
parentfeat(git-crypt): add new key (diff)
downloadnixos-server-6948186c481fa55a487afe7660c4e6d22a7cc320.tar.gz
nixos-server-6948186c481fa55a487afe7660c4e6d22a7cc320.zip
fix(system/services/taskserver): Support both ipv4 and ipv6
-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";