fix transmission https
This commit is contained in:
@@ -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" = {
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
{
|
{
|
||||||
"transmission" = {
|
"transmission" = {
|
||||||
icon = "transmission.svg";
|
icon = "transmission.svg";
|
||||||
href = "http://10.0.0.10:9091";
|
href = "http://torrent.nicknase27.com";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user