Fixed small mistake: transmission now listens on correct addresses
This commit is contained in:
@@ -84,7 +84,6 @@ in {
|
|||||||
services.transmission = mkIf (!cfg.vpn.enable) {
|
services.transmission = mkIf (!cfg.vpn.enable) {
|
||||||
enable = true;
|
enable = true;
|
||||||
group = "media";
|
group = "media";
|
||||||
# TODO: This doesn't work, and it should...
|
|
||||||
home = cfg.stateDir;
|
home = cfg.stateDir;
|
||||||
webHome =
|
webHome =
|
||||||
if cfg.flood.enable
|
if cfg.flood.enable
|
||||||
@@ -101,7 +100,7 @@ in {
|
|||||||
watch-dir-enabled = true;
|
watch-dir-enabled = true;
|
||||||
watch-dir = "${nixarr.mediaDir}/torrents/.watch";
|
watch-dir = "${nixarr.mediaDir}/torrents/.watch";
|
||||||
|
|
||||||
rpc-bind-address = "192.168.15.1";
|
rpc-bind-address = "127.0.0.1";
|
||||||
rpc-port = cfg.uiPort;
|
rpc-port = cfg.uiPort;
|
||||||
rpc-whitelist-enabled = true;
|
rpc-whitelist-enabled = true;
|
||||||
rpc-whitelist = "192.168.15.1,127.0.0.1";
|
rpc-whitelist = "192.168.15.1,127.0.0.1";
|
||||||
@@ -194,7 +193,7 @@ in {
|
|||||||
watch-dir-enabled = true;
|
watch-dir-enabled = true;
|
||||||
watch-dir = "${nixarr.mediaDir}/torrents/.watch";
|
watch-dir = "${nixarr.mediaDir}/torrents/.watch";
|
||||||
|
|
||||||
rpc-bind-address = "127.0.0.1";
|
rpc-bind-address = "192.168.15.1";
|
||||||
rpc-port = cfg.uiPort;
|
rpc-port = cfg.uiPort;
|
||||||
rpc-whitelist-enabled = false;
|
rpc-whitelist-enabled = false;
|
||||||
rpc-whitelist = "192.168.15.1,127.0.0.1";
|
rpc-whitelist = "192.168.15.1,127.0.0.1";
|
||||||
|
|||||||
Reference in New Issue
Block a user