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:
parent
9ebc98e53d
commit
7d6c02d45a
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue