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" ];