nixos/restic-rest-server: set FreeBind=true for socket...

in order to allow binding to not (yet) locally available
interfaces. man 5 systemd.socket says:

> For robustness reasons it is recommended to use this option
> whenever you bind a socket to a specific IP address.
This commit is contained in:
phaer
2025-11-30 18:14:01 +01:00
parent 4ef2a18e9e
commit f02f30a021
@@ -136,6 +136,7 @@ in
wantedBy = [ "sockets.target" ];
socketConfig = {
ReusePort = true;
FreeBind = true;
};
};