From 836a4e3f2175c5d327c00e582e3447fed5483071 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 8 Jul 2026 03:24:11 +0200 Subject: [PATCH] nix test vm: expose 8443->443 --- nix/testVm/vm.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/testVm/vm.nix b/nix/testVm/vm.nix index c07e4f926..50eb4d259 100644 --- a/nix/testVm/vm.nix +++ b/nix/testVm/vm.nix @@ -27,6 +27,11 @@ host.port = 8080; guest.port = 80; } + { + from = "host"; + host.port = 8443; + guest.port = 443; + } { from="host"; host.port = 6000;