From 50ca6f03eed48435986e42a34f8603b754cf110b Mon Sep 17 00:00:00 2001 From: clerie Date: Sat, 31 May 2025 13:02:18 +0200 Subject: [PATCH] hosts/porter: Proxy port 80 and 443 to baikonur --- hosts/porter/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/porter/configuration.nix b/hosts/porter/configuration.nix index 2e236c2..2c873a4 100644 --- a/hosts/porter/configuration.nix +++ b/hosts/porter/configuration.nix @@ -26,8 +26,18 @@ ipv6AcceptRAConfig.DHCPv6Client = "no"; }; + profiles.clerie.common-webserver.httpDefaultVirtualHost = false; + clerie.nginx-port-forward = { enable = true; + tcpPorts."80" = { + host = "baikonur.dyn.weimarnetz.de"; + port = 80; + }; + tcpPorts."443" = { + host = "baikonur.dyn.weimarnetz.de"; + port = 443; + }; tcpPorts."2022" = { host = "nonat.net.clerie.de"; port = 22;