3
0
Fork 0
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:
Joachim F 2016-09-29 14:59:51 +02:00 committed by GitHub
commit e2c7f7135d

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