From d76a1c5d259dd72b91a44f65c261d6d82823d7f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 11 Apr 2024 21:12:54 +0200 Subject: [PATCH] Reflect 80, 443, 53 --- config/net/upstream.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/net/upstream.nix b/config/net/upstream.nix index 494acb5..e04fd18 100644 --- a/config/net/upstream.nix +++ b/config/net/upstream.nix @@ -33,11 +33,13 @@ in { # http destination = servHosts.public-access-proxy; proto = "tcp"; + reflect = true; sourcePort = 80; } { # https destination = servHosts.public-access-proxy; proto = "tcp"; + reflect = true; sourcePort = 443; } { # gemini @@ -49,11 +51,13 @@ in { destination = servHosts.knot; proto = "tcp"; + reflect = true; sourcePort = 53; } { destination = servHosts.knot; proto = "udp"; + reflect = true; sourcePort = 53; } {