mirror of https://gitlab.crans.org/nounous/nixos
fix(restic-server): listenAddress replace localhost by 127.0.0.1
parent
f221010134
commit
7804d69fcd
|
|
@ -35,7 +35,7 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
dataDir = cfg.dataDir;
|
dataDir = cfg.dataDir;
|
||||||
listenAddress = "localhost:${toString cfg.port}";
|
listenAddress = "127.0.0.1:${toString cfg.port}";
|
||||||
privateRepos = true;
|
privateRepos = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue