3
0
Fork 0
forked from mirrors/nixpkgs

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.
This commit is contained in:
Pascal Bach 2016-09-26 23:03:31 +02:00
parent 9ebc98e53d
commit 7d6c02d45a

2
nixos/modules/services/misc/confd.nix Normal file → Executable file
View file

@ -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;
};