diff options
-rw-r--r-- | system/services/taskserver/default.nix | 4 |
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"; |