From 4b8afb9a33515ee65e2bbdec9b93642d40a49821 Mon Sep 17 00:00:00 2001 From: baritone Date: Tue, 15 Apr 2025 13:40:49 +0200 Subject: [PATCH] actually made web ui accessible from local network --- services/auto-torrent.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/auto-torrent.nix b/services/auto-torrent.nix index 0d9f621..e57b051 100644 --- a/services/auto-torrent.nix +++ b/services/auto-torrent.nix @@ -177,6 +177,9 @@ in { download-queue-enabled = false; rpc-authentication-required = false; + rpc-bind-address = "0.0.0.0"; + rpc-host-whitelist = builtins.concatStringsSep "," [host "127.0.0.1" "10.0.101.10" "10.0.${toString vm-index}.254"]; + rpc-whitelist = builtins.concatStringsSep "," [host "127.0.0.1" "10.0.101.10" "10.0.${toString vm-index}.254"]; }; downloadDirPermissions = "775"; performanceNetParameters = true;