From 4ba96ac7f27accf0cf5ffb296613c29e2a88c02e Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Sun, 5 Nov 2023 00:43:29 -0700 Subject: [PATCH] add rss to reverse proxy --- provision/hosts/torus/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/provision/hosts/torus/configuration.nix b/provision/hosts/torus/configuration.nix index 90789cee..3d185688 100644 --- a/provision/hosts/torus/configuration.nix +++ b/provision/hosts/torus/configuration.nix @@ -111,6 +111,12 @@ enableACME = true; forceSSL = true; }; in { + "rss.tstarr.us" = (SSL // { + locations."/".proxyPass = "http://localhost:8081/"; + }); + "rssbridge.tstarr.us" = (SSL // { + locations."/".proxyPass = "http://localhost:3000/"; + }); "media.tstarr.us" = (SSL // { locations."/".proxyPass = "http://localhost:8096/"; });