diff options
Diffstat (limited to 'router.nix')
| -rw-r--r-- | router.nix | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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 |
