From 91b0d005d2fcaf2aa3b762c61877919873d1c482 Mon Sep 17 00:00:00 2001 From: Thilo Billerbeck Date: Tue, 5 Dec 2023 19:02:15 +0100 Subject: [PATCH] modified bart firewall and proxy --- machines/skinner/configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/machines/skinner/configuration.nix b/machines/skinner/configuration.nix index 65ef248..de4539c 100644 --- a/machines/skinner/configuration.nix +++ b/machines/skinner/configuration.nix @@ -27,7 +27,7 @@ in networking = { hostName = "skinner"; - firewall = { allowedTCPPorts = [ 22 80 443 5001 9001 ]; }; + firewall = { allowedTCPPorts = [ 22 80 443 5001 8080 9001 ]; }; }; virtualisation = { @@ -64,6 +64,14 @@ in proxyPass = "http://localhost:5678"; }; }; + "testcloud.thilo-billerbeck.com" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyWebsockets = true; + proxyPass = "http://localhost:11000"; + }; + }; }; }; prometheus = {