From b67a4abbe3e67718f26ccd6acc2b6993ddc5aa67 Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Fri, 11 Apr 2025 13:03:34 +0200 Subject: [PATCH] Basic security practices are hard --- hosts/bastion.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/hosts/bastion.nix b/hosts/bastion.nix index 6c69d86..d39b852 100644 --- a/hosts/bastion.nix +++ b/hosts/bastion.nix @@ -8,10 +8,11 @@ rec { ip = "192.168.10.189"; traefikRoutes = [ - { - name = "${hostname}-vpn"; - rule = "Host(`vpn.${hlConfig.domain}`)"; - target = "http://${ip}:80"; - } + # NOTE: Disabled for now, since there is no auth yet + # { + # name = "${hostname}-vpn"; + # rule = "Host(`vpn.${hlConfig.domain}`)"; + # target = "http://${ip}:80"; + # } ]; }