diff --git a/config/config.php b/config/config.php index 468abb5..4ccdbe4 100644 --- a/config/config.php +++ b/config/config.php @@ -1,11 +1,41 @@ [ + 'default' => [ + /* + |-------------------------------------------------------------------------- + | ZeroMQ protocol + |-------------------------------------------------------------------------- + | Transport protocol that'll be used to + | establish ZeroMQ connections. + | + */ + 'protocol' => 'tcp', - 'host' => '127.0.0.1', - 'port' => 28332, + + /* + |-------------------------------------------------------------------------- + | ZeroMQ host + |-------------------------------------------------------------------------- + | IP or hostname of peer with which ZeroMQ connection + | should be established. + | + */ + + 'host' => 'localhost', + + /* + |-------------------------------------------------------------------------- + | ZeroMQ port + |-------------------------------------------------------------------------- + | Port to which ZeroMQ connection should + | be established. + */ + + 'port' => 28332, ], ], ];