dncurrency/docker/node/config/config-node.toml
Chip Thien cb40669563
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
2020-05-19 16:58:24 +01:00

15 lines
219 B
TOML

[node.websocket]
# 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.
# type:bool
enable = true