From 7d6c02d45aa4320ab51342584bf27408012434fa Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Mon, 26 Sep 2016 23:03:31 +0200 Subject: [PATCH] confd service: change default etcd port 4001 -> 2379 New versions of etcd listen on 2379 by default. This is also the official IANA assigned port. --- nixos/modules/services/misc/confd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 nixos/modules/services/misc/confd.nix diff --git a/nixos/modules/services/misc/confd.nix b/nixos/modules/services/misc/confd.nix old mode 100644 new mode 100755 index 72ec68dee6b..fe13013286b --- a/nixos/modules/services/misc/confd.nix +++ b/nixos/modules/services/misc/confd.nix @@ -33,7 +33,7 @@ in { nodes = mkOption { description = "Confd list of nodes to connect to."; - default = [ "http://127.0.0.1:4001" ]; + default = [ "http://127.0.0.1:2379" ]; type = types.listOf types.str; };