update(torrentbox): expose transmission in tailscale
This commit is contained in:
parent
42be578689
commit
a040dd330d
1 changed files with 9 additions and 1 deletions
|
|
@ -1,4 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
hosts = import ../hosts.nix;
|
||||
in
|
||||
{
|
||||
services = {
|
||||
bazarr = { enable = true; openFirewall = true; group = "users"; };
|
||||
# jellyseerr = { enable = true; openFirewall = true; };
|
||||
|
|
@ -19,6 +23,10 @@
|
|||
download-queue-size = 20;
|
||||
ratio-limit = 3;
|
||||
ratio-limit-enabled = true;
|
||||
blocklist-enabled = true;
|
||||
rpc-bind-address = hosts.tailscale.ipv4.heimdall;
|
||||
rpc-host-whitelist = lib.strings.join "," [ "heimdall" ];
|
||||
rpc-whitelist = lib.strings.join "," [ "127.0.0.1" "::1" hosts.tailscale.ipv4.heimdall hosts.tailscale.ipv4.sif hosts.tailscale.ipv4.thor ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue