From 096cd329953a8da81239bab1ab1a58dec01ab8bc Mon Sep 17 00:00:00 2001 From: Mathias Magnusson Date: Sun, 19 Oct 2025 19:50:05 +0200 Subject: forward http{s,} to mimer --- router.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/router.nix b/router.nix index 1b2eb51..3cca35e 100644 --- a/router.nix +++ b/router.nix @@ -14,7 +14,16 @@ in enable = true; externalInterface = wanInterface; internalInterfaces = [ "br0" ]; - # forwardPorts = [{ sourcePort = 1234; destination = "10.69.0.2:12345"; }]; + forwardPorts = [ + { + sourcePort = 80; + destination = "10.69.0.3:80"; + } + { + sourcePort = 443; + destination = "10.69.0.3:443"; + } + ]; }; bridges.br0.interfaces = [ lanInterface -- cgit v1.2.3