fix(restic-server): listenAddress replace localhost by 127.0.0.1

merge-requests/39/head
Lzebulon 2025-11-30 19:32:32 +01:00
parent f221010134
commit 7804d69fcd
No known key found for this signature in database
GPG Key ID: D6CDAB8050CBBE7D
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};
};