Skip to content

Commit

Permalink
Added config var descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Sep 15, 2018
1 parent 4be5321 commit a5517ea
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions config/config.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,41 @@
<?php

return [

'connections' => [

'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,
],
],
];

0 comments on commit a5517ea

Please sign in to comment.