From e0a07970d6e033216ee83a1bb152e1ff6eb13a19 Mon Sep 17 00:00:00 2001 From: Julius de Jeu Date: Fri, 20 May 2022 23:05:56 +0200 Subject: [PATCH] Update k3s to allow access from domain --- nixos/machines/k3s/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/machines/k3s/default.nix b/nixos/machines/k3s/default.nix index cfd2217..e433099 100644 --- a/nixos/machines/k3s/default.nix +++ b/nixos/machines/k3s/default.nix @@ -24,6 +24,7 @@ "--data-dir=/var/lib/k3s" # Set data dir to var lib "--cluster-init" # Enable embedded etcd "--cluster-cidr=10.69.0.0/16" # the default of 10.42.0.0/16 clashes with my own network + "--tls-san asraphiel.dev" # Set the SAN to the hostname ]; }; }