From ba77fc7950f57f4cc331099c7a66abdca898c53d Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Fri, 4 Jun 2021 11:47:04 -0400 Subject: [PATCH] add jackett --- machines/mitty/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/machines/mitty/configuration.nix b/machines/mitty/configuration.nix index 81d4e6f..690dfa2 100644 --- a/machines/mitty/configuration.nix +++ b/machines/mitty/configuration.nix @@ -56,6 +56,8 @@ services.bazarr.openFirewall = true; services.sonarr.enable = true; services.sonarr.openFirewall = true; + services.jackett.enable = true; + services.jackett.openFirewall = true; services.jellyfin.enable = true; services.jellyfin.openFirewall = true; services.deluge.enable = true; @@ -99,6 +101,13 @@ proxyPass = "http://172.16.100.2:8112"; }; }; + services.nginx.virtualHosts."jackett.neet.cloud" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://172.16.100.2:9117"; + }; + }; networking.nat.enable = true; networking.nat.internalInterfaces = [ "ve-jellyfin" ];