forked from mirrors/nixpkgs
Merge pull request #19060 from bachp/confd-etcd-port
confd service: change default etcd port 4001 -> 2379
This commit is contained in:
commit
e2c7f7135d
2
nixos/modules/services/misc/confd.nix
Normal file → Executable file
2
nixos/modules/services/misc/confd.nix
Normal file → Executable 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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue