mirror of https://gitlab.crans.org/nounous/nixos
Merge branch 'fix-restic-server' into 'main'
fix(restic-server): listenAddress replace localhost by 127.0.0.1 See merge request nounous/nixos!39merge-requests/40/merge
commit
f301c09bff
|
|
@ -35,7 +35,7 @@ in
|
|||
enable = true;
|
||||
|
||||
dataDir = cfg.dataDir;
|
||||
listenAddress = "localhost:${toString cfg.port}";
|
||||
listenAddress = "127.0.0.1:${toString cfg.port}";
|
||||
privateRepos = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue