Enable WebSocket server by default in Docker image (#2774)
* Enable WebSocket server by default in Docker image The rpc server is enabled by default and port mappings are provided for both the rpc server and the websocket server. Keeping the configuration and documentation consistent between the two will be clearer. * Consistently document default config
This commit is contained in:
parent
5a3f0f838b
commit
cb40669563
1 changed files with 5 additions and 2 deletions
|
@ -1,12 +1,15 @@
|
|||
|
||||
[node.websocket]
|
||||
|
||||
# WebSocket server bind address
|
||||
# WebSocket server bind address.
|
||||
# type:string,ip
|
||||
address = "::ffff:0.0.0.0"
|
||||
# Enable or disable WebSocket server.
|
||||
# type:bool
|
||||
enable = true
|
||||
|
||||
[rpc]
|
||||
|
||||
# Enable or disable RPC
|
||||
# Enable or disable RPC.
|
||||
# type:bool
|
||||
enable = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue