fix transmission https

This commit is contained in:
2026-07-28 14:36:55 +02:00
parent 66fd70b5c4
commit 7218f4240b
3 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -103,7 +103,7 @@
}; };
"torrent.nicknase27.com" = { "torrent.nicknase27.com" = {
extraConfig = '' extraConfig = ''
reverse_proxy localhost:9091 reverse_proxy 192.168.15.1:9091
''; '';
}; };
"storage.nicknase27.com" = { "storage.nicknase27.com" = {
+1 -1
View File
@@ -46,7 +46,7 @@
{ {
"transmission" = { "transmission" = {
icon = "transmission.svg"; icon = "transmission.svg";
href = "http://10.0.0.10:9091"; href = "http://torrent.nicknase27.com";
}; };
} }
]; ];
+5 -6
View File
@@ -1,8 +1,5 @@
{ {
pkgs,
lib,
config, config,
inputs,
... ...
}: { }: {
# Define VPN network namespace # Define VPN network namespace
@@ -44,11 +41,13 @@
services.transmission = { services.transmission = {
enable = true; enable = true;
settings = { settings = {
"rpc-bind-address" = "0.0.0.0"; # Bind RPC/WebUI to VPN network namespace address
"rpc-whitelist-enabled" = false;
"rpc-whitelist" = "10.0.0.*,127.0.0.1";
download-dir = "/mnt/media/downloads"; download-dir = "/mnt/media/downloads";
incomplete-dir-enabled = false; incomplete-dir-enabled = false;
"rpc-bind-address" = "0.0.0.0"; # Bind RPC/WebUI to VPN network namespace address
"rpc-whitelist-enabled" = true;
"rpc-whitelist" = "10.0.0.*,192.168.15.*,127.0.0.1";
"rpc-host-whitelist-enabled" = true;
"rpc-host-whitelist" = "torrent.nicknase27.com";
}; };
}; };