From 890d5e24970d44f9410a51f6e6ce2368d27c7060 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 23 May 2017 09:58:34 +0200 Subject: [PATCH] zeromq: updated example configuration --- etc/example.conf | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/etc/example.conf b/etc/example.conf index e4fa53aeb..e897c129e 100644 --- a/etc/example.conf +++ b/etc/example.conf @@ -167,8 +167,19 @@ nodes = { type = "zeromq", pattern = "pubsub", # The ZeroMQ pattern. One of: 'pubsub', 'radiodish' + ipv6 = false, # Enable IPv6 support + filter = "ab184", # A filter which is prefix matched + curve = { # Z85 encoded Curve25519 keys + enabled = true, + public_key = "Veg+Q.V-c&1k>yVh663gQ^7fL($y47gybE-nZP1L", + secret_key = "HPY.+mFuB[jGs@(zZr6$IZ1H1dZ7Ji*j>oi@O?Pc" + } + subscribe = "tcp://*:1234" # The subscribe endpoint. See http://api.zeromq.org/2-1:zmq-bind for details. - publish = [ "tcp://localhost:1235", "tcp://localhost:12444" ] # The publish endpoints. See http://api.zeromq.org/2-1:zmq-connect for details. + publish = [ # The publish endpoints. See http://api.zeromq.org/2-1:zmq-connect for details. + "tcp://localhost:1235", + "tcp://localhost:12444" + ], } };