Merge pull request #91128 from bbigras/rslsync-localhost

nixos/resilio: listen on [::1] by default
This commit is contained in:
Michele Guerini Rocco
2020-06-20 20:43:04 +02:00
committed by GitHub
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.
'';