From 4b23e0cfda26c2fec5ba1da6ed4c45c0a91217f6 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 20 Dec 2022 00:13:35 +0100 Subject: [PATCH] Radarr and Sonarr --- baldur/configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/baldur/configuration.nix b/baldur/configuration.nix index 75008c6..c46d927 100644 --- a/baldur/configuration.nix +++ b/baldur/configuration.nix @@ -67,6 +67,18 @@ with lib; { proxy_pass_header Authorization; ''; }; + "radarr.bertof.net" = ssl // { + locations."/" = { proxyPass = "http://loki.local:7878/"; proxyWebsockets = true; }; + extraConfig = '' + proxy_pass_header Authorization; + ''; + }; + "sonarr.bertof.net" = ssl // { + locations."/" = { proxyPass = "http://loki.local:8989/"; proxyWebsockets = true; }; + extraConfig = '' + proxy_pass_header Authorization; + ''; + }; }; }; openssh = { enable = true; openFirewall = true; };