nixos/resilio: listen on [::1] by default

This commit is contained in:
Bruno Bigras
2020-06-20 14:28:23 -04:00
parent 5460cc93c4
commit dbb5bdfa09
2 changed files with 7 additions and 2 deletions
@@ -109,8 +109,8 @@ in
httpListenAddr = mkOption {
type = types.str;
default = "0.0.0.0";
example = "1.2.3.4";
default = "[::1]";
example = "0.0.0.0";
description = ''
HTTP address to bind to.
'';