From a3d8be4f3d994c974bb673deaff2c63505705b05 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Wed, 12 Feb 2025 17:24:10 +0530 Subject: [PATCH] feat(rahu): allow connections to transmission from localhost and LAN devices only --- hosts/rahu/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/rahu/configuration.nix b/hosts/rahu/configuration.nix index 8261820..18960f1 100644 --- a/hosts/rahu/configuration.nix +++ b/hosts/rahu/configuration.nix @@ -44,6 +44,8 @@ openRPCPort = true; settings = { rpc-bind-address = "0.0.0.0"; + # Allow connections from localhost and LAN + rpc-whitelist = "127.0.0.1,192.168.12.*"; download-dir = "/media/seed"; encryption = 2; peer-limit = 2000;