From cd7d55247c2165ca7cda9a3b4de7835c234bf9c5 Mon Sep 17 00:00:00 2001 From: leonvita91 Date: Sat, 20 Aug 2022 21:09:57 +0100 Subject: [PATCH] add port upstream vpn-website --- config/net/upstream.nix | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/config/net/upstream.nix b/config/net/upstream.nix index 188d82b..209efdc 100644 --- a/config/net/upstream.nix +++ b/config/net/upstream.nix @@ -113,13 +113,26 @@ in reflect = true; sourcePort = 64699; } - { + + { #ssh destination = "${servHosts.leon}:22"; proto = "tcp"; reflect = true; sourcePort = 2223; } - { + { #Website + destination = "${servHosts.leon}:5000"; + proto = "tcp"; + reflect = true; + sourcePort = 5001; + } + { #VPN_Wireguard + destination = "${servHosts.leon}:8800"; + proto = "udp"; + reflect = true; + sourcePort = 777; + } + { destination = servHosts.minetest; proto = "udp"; reflect = true;