about summary refs log tree commit diff
path: root/nixos/modules/services/networking/resilio.nix
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2020-06-19 18:18:10 -0400
committerBruno Bigras <bigras.bruno@gmail.com>2020-06-20 14:28:23 -0400
commitdbb5bdfa09eb4ecfce1b06a2a7e647ca13fa16c2 (patch)
treec2cd6564216dcd724aa32f4b21c53548674e6440 /nixos/modules/services/networking/resilio.nix
parent5460cc93c4e98091c4a24b915a64e8433a3efefe (diff)
nixos/resilio: listen on [::1] by default
Diffstat (limited to 'nixos/modules/services/networking/resilio.nix')
-rw-r--r--nixos/modules/services/networking/resilio.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/resilio.nix b/nixos/modules/services/networking/resilio.nix
index e74e03fc0b075..f90fa3163e3fc 100644
--- a/nixos/modules/services/networking/resilio.nix
+++ b/nixos/modules/services/networking/resilio.nix
@@ -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.
         '';