diff options
author | Soispha <soispha@vhack.eu> | 2023-11-18 17:38:30 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-11-18 17:46:16 +0100 |
commit | 5200f2e8f2dc58a1310a3f96b8c21cf164fe65a3 (patch) | |
tree | 670f8434d296ae1c09b033d7630d24badea6ebcc /system | |
parent | fix(system/users): change ssh-keys for sils (diff) | |
download | nixos-server-5200f2e8f2dc58a1310a3f96b8c21cf164fe65a3.tar.gz nixos-server-5200f2e8f2dc58a1310a3f96b8c21cf164fe65a3.zip |
fix(system/services/taskserver): Support both ipv4 and ipv6
Diffstat (limited to '')
-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"; |